mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 20:32:56 +03:00
7902d215b3
Note that there is currently no way to display them as we can't currently clone nodes. Adds special case for templates for dumping to console. Doesn't add it to the DOM inspector as I'm not sure how to do it.
15 lines
245 B
HTML
15 lines
245 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<template id="template">
|
|
<div id="templatediv">Hello template!</div>
|
|
<script>
|
|
// I shouldn't be run.
|
|
window.templateScriptRan = true;
|
|
</script>
|
|
</template>
|
|
</body>
|
|
</html>
|