Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / in-html / nested-scripts.html
blob7d93cff2a94ef971bf420a6777102e23d483244c
1 <html>
2 <head>
3 <script src="../../resources/js-test.js"></script>
4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
7 </script>
8 </head>
9 <body>
10 <div id="console"></div>
11 <svg>
12 <g>
13 <rect id="test">
14 <script>
15 // Notice that the parent script block ignores the nested
16 // script element.
17 debug('Hello<script>debug("inner script ran!");</script>World');
18 </script>
19 </rect>
20 </g>
21 </svg>
22 </body>
23 </html>