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

Unified Diff: third_party/WebKit/Source/web/tests/data/composited_selection_bounds_basic.html

Issue 2201853002: Blink handle selection handle visibility (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed contextual search test function Created 4 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: third_party/WebKit/Source/web/tests/data/composited_selection_bounds_basic.html
diff --git a/third_party/WebKit/Source/web/tests/data/composited_selection_bounds_basic.html b/third_party/WebKit/Source/web/tests/data/composited_selection_bounds_basic.html
index 962418581e36ae592045e802c0453b07ec632c27..0b45a9c7db3ac1e78e00f43b23cbdede9b8b98d0 100644
--- a/third_party/WebKit/Source/web/tests/data/composited_selection_bounds_basic.html
+++ b/third_party/WebKit/Source/web/tests/data/composited_selection_bounds_basic.html
@@ -14,9 +14,9 @@
var range = document.createRange();
var textNode = document.getElementById("text").firstChild;
range.setStart(textNode, 10);
- range.setEnd(textNode, 25);
+ range.setEnd(textNode, 35);
document.getSelection().addRange(range);
- window.expectedResult = [document, 68, 8, 68, 20, document, 248, 8, 248, 20];
+ window.expectedResult = [document, 68, 8, 68, 20, document, 368, 8, 368, 20];
</script>

Powered by Google App Engine
This is Rietveld 408576698