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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/regions/br-content-node-crash.xhtml
diff --git a/LayoutTests/fast/regions/br-content-node-crash.xhtml b/LayoutTests/fast/regions/br-content-node-crash.xhtml
deleted file mode 100644
index 4050a80c92ec3ff1dc6226ba510a96100c8d089e..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/br-content-node-crash.xhtml
+++ /dev/null
@@ -1,24 +0,0 @@
-<html xmlns="http://www.w3.org/1999/xhtml">
- <!-- This test needs to be xhtml so that the br element is an accepted child of frameset element -->
- <div>Test that moving a br element to a named flow does not crash when the br element should not have a renderer created.</div>
- <div>To manually test, move the mouse to the upper left corner of the document and try to make a selection to the bottom of the document. It should not crash.</div>
- <frameset>
- <br style="-webkit-flow-into: contents"></br>
- </frameset>
- <script>
- <![CDATA[
- if (window.testRunner)
- window.testRunner.dumpAsText();
-
- function keyDownMouseClick(x2, y2) {
- if (window.eventSender) {
- eventSender.mouseDown();
- eventSender.mouseMoveTo(x2, y2);
- eventSender.mouseUp();
- }
- }
-
- document.addEventListener("DOMContentLoaded", keyDownMouseClick(100, 500), false);
- ]]>
- </script>
-</html>

Powered by Google App Engine
This is Rietveld 408576698