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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/form-associated-element-crash5.html

Issue 1532103002: Better handling of DocumentOrderedMap same-ID lookups during tree removals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review updates, part2 Created 5 years 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/forms/form-associated-element-crash5-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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <body>
4 <p id="foo">
5 <output form="foo" id="foo"></output>
6 </p>
4 <script> 7 <script>
5 if (window.testRunner) { 8 if (window.testRunner) {
6 testRunner.dumpAsText(); 9 testRunner.dumpAsText();
7 testRunner.waitUntilDone(); 10 testRunner.waitUntilDone();
8 } 11 }
9 12 window.onload = function () {
10 function done() 13 document.body.removeChild(document.querySelector("p"));
11 { 14 document.body.innerHTML = 'PASS; no crash.';
12 if (window.testRunner) 15 if (window.testRunner)
13 testRunner.notifyDone(); 16 testRunner.notifyDone();
14 } 17 };
15 </script> 18 </script>
16 </head>
17 <body>
18 <iframe sandbox="allow-scripts" src="data:text/html,<script>document.domain='127 .0.0.1'</script>" onload="done()">
19 </iframe>
20 </body> 19 </body>
21 </html> 20 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/forms/form-associated-element-crash5-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698