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

Side by Side Diff: LayoutTests/fast/regions/br-content-node-crash.xhtml

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 <html xmlns="http://www.w3.org/1999/xhtml">
2 <!-- This test needs to be xhtml so that the br element is an accepted child of frameset element -->
3 <div>Test that moving a br element to a named flow does not crash when the b r element should not have a renderer created.</div>
4 <div>To manually test, move the mouse to the upper left corner of the docume nt and try to make a selection to the bottom of the document. It should not cras h.</div>
5 <frameset>
6 <br style="-webkit-flow-into: contents"></br>
7 </frameset>
8 <script>
9 <![CDATA[
10 if (window.testRunner)
11 window.testRunner.dumpAsText();
12
13 function keyDownMouseClick(x2, y2) {
14 if (window.eventSender) {
15 eventSender.mouseDown();
16 eventSender.mouseMoveTo(x2, y2);
17 eventSender.mouseUp();
18 }
19 }
20
21 document.addEventListener("DOMContentLoaded", keyDownMouseClick(100, 500), false);
22 ]]>
23 </script>
24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698