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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/svg/in-html/nested-scripts-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/svg/in-html/nested-scripts.html
diff --git a/LayoutTests/svg/in-html/script.html b/LayoutTests/svg/in-html/nested-scripts.html
similarity index 62%
copy from LayoutTests/svg/in-html/script.html
copy to LayoutTests/svg/in-html/nested-scripts.html
index 6fc03af4b244768db8527bf2f6af49faed2544d2..7d93cff2a94ef971bf420a6777102e23d483244c 100644
--- a/LayoutTests/svg/in-html/script.html
+++ b/LayoutTests/svg/in-html/nested-scripts.html
@@ -7,13 +7,14 @@
</script>
</head>
<body>
-<!-- Makes sure we execute scripts inside <svg>. Test passes if PASS is printed. -->
<div id="console"></div>
<svg>
<g>
<rect id="test">
<script>
- testPassed("script ran!");
+ // Notice that the parent script block ignores the nested
+ // script element.
+ debug('Hello<script>debug("inner script ran!");</script>World');
</script>
</rect>
</g>
« 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