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

Side by Side Diff: LayoutTests/fast/regions/moved-content-node-crash.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <body>
4 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=95645">WebKit B ug 95645</a> Crash </p>
5 <p>The test passes if it does not crash or assert.</p>
6 <p>PASS</p>
7 <div id="DIV1">
8 <div id="DIV2">
9 <iframe id="FRAME1" style="-webkit-flow-into: flow;"></iframe>
10 <iframe id="FRAME2"></iframe>
11 <script>
12 if (window.testRunner)
13 window.testRunner.dumpAsText();
14
15 div1 = document.getElementById("DIV1");
16 div2 = document.getElementById("DIV2");
17 frame1 = document.getElementById("FRAME1");
18 frame2 = document.getElementById("FRAME2");
19 frame2.contentDocument.body.appendChild(frame1);
20
21 document.body.offsetTop;
22 div1.replaceChild(frame1, div2);
23 </script>
24 </div>
25 </div>
26 </body>
27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698