summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/Tests/Pages/Template.html
blob: e4478f408f8362c22eea10ba35a20a0fc8871268 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!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>