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

Side by Side Diff: LayoutTests/fast/dom/HTMLScriptElement/append-child-style-crash.html

Issue 221673003: Defer iframe JavaScript URL evaluation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Landing Created 6 years, 8 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
« no previous file with comments | « no previous file | LayoutTests/fast/dom/HTMLScriptElement/append-child-style-crash-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
(Empty)
1 <!DOCTYPE html>
2 <body>
3 <script>
4 function callback() {
5 style0.innerHTML = '';
6 script0.removeChild(style0);
7 }
8
9 style0=document.createElement('style');
10 style0.innerHTML = 'span { color: blue; }';
11
12 script0=document.createElement('script');
13 script0.innerHTML = "callback();";
14 script0.appendChild(style0);
15 document.body.appendChild(script0);
16
17 if (window.testRunner)
18 testRunner.dumpAsText();
19 </script>
20 <p>PASS unless crash</p>
21 </body>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dom/HTMLScriptElement/append-child-style-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698