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

Side by Side Diff: LayoutTests/fast/dom/HTMLScriptElement/resources/append-child-adopt-node-frame.html

Issue 288033006: Revert a series of wrong fixes for crbug.com/361011 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 months 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
OLDNEW
(Empty)
1 <body>
2 <script>
3 function init()
4 {
5 document.createElement("canvas").getContext("webgl", null);
6 var epilogue = document.createElement("script");
7 epilogue.src = "should-not-run.js";
8 document.body.appendChild(epilogue);
9 window.top.document.adoptNode(document.documentElement);
10
11 window.top.done();
12 }
13
14 init();
15 </script>
16 </body>
17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698