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

Unified Diff: LayoutTests/fast/regions/selection/selection-direction.html

Issue 25761004: [CSS Regions] Helper functions for selection layout tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 2 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/selection/selection-direction.html
diff --git a/LayoutTests/fast/regions/selection/selection-direction.html b/LayoutTests/fast/regions/selection/selection-direction.html
index e85b8fee24fb48a49346df4504f35a1bcc091afe..5c702d19ee42a38347d11e64133abd1b0869bccc 100644
--- a/LayoutTests/fast/regions/selection/selection-direction.html
+++ b/LayoutTests/fast/regions/selection/selection-direction.html
@@ -1,5 +1,6 @@
<html>
<head>
+ <script src="../resources/helper.js"></script>
<style>
#source {
-webkit-flow-into: content;
@@ -24,19 +25,8 @@
width: 600px;
}
</style>
- <script>
- function selectText() {
- if (window.testRunner) {
- eventSender.mouseMoveTo(100, 10);
- eventSender.mouseDown();
-
- eventSender.mouseMoveTo(100, 110);
- eventSender.mouseUp();
- }
- }
- </script>
</head>
-<body onload="selectText();">
+<body onload="selectContentByRange(100, 10, 100, 110);">
<div id="source">inside region inside region inside region inside region</div>
<div id="outside">outside region outside region outside region outside region</div>
<div id="region"></div>

Powered by Google App Engine
This is Rietveld 408576698