Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Side by Side Diff: LayoutTests/svg/in-html/nested-scripts.html

Issue 26129005: Rewrite Text node attaching to not be N^2 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Flush for foriegn content also Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/svg/in-html/nested-scripts-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../resources/js-test.js"></script> 3 <script src="../../resources/js-test.js"></script>
4 <script> 4 <script>
5 if (window.testRunner) 5 if (window.testRunner)
6 testRunner.dumpAsText(); 6 testRunner.dumpAsText();
7 </script> 7 </script>
8 </head> 8 </head>
9 <body> 9 <body>
10 <!-- Makes sure we execute scripts inside <svg>. Test passes if PASS is printed. -->
11 <div id="console"></div> 10 <div id="console"></div>
12 <svg> 11 <svg>
13 <g> 12 <g>
14 <rect id="test"> 13 <rect id="test">
15 <script> 14 <script>
16 testPassed("script ran!"); 15 // Notice that the parent script block ignores the nested
16 // script element.
17 debug('Hello<script>debug("inner script ran!");</script>World');
17 </script> 18 </script>
18 </rect> 19 </rect>
19 </g> 20 </g>
20 </svg> 21 </svg>
21 </body> 22 </body>
22 </html> 23 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/in-html/nested-scripts-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698