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

Unified Diff: third_party/WebKit/Source/web/tests/data/composited_selection_bounds_transformed.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_transformed.html
diff --git a/third_party/WebKit/Source/web/tests/data/composited_selection_bounds_transformed.html b/third_party/WebKit/Source/web/tests/data/composited_selection_bounds_transformed.html
index 5ad9cde7948288714fb3ae245419a29f6de86451..40cddf77f4183a2e155e964a3f60bc9a961a088b 100644
--- a/third_party/WebKit/Source/web/tests/data/composited_selection_bounds_transformed.html
+++ b/third_party/WebKit/Source/web/tests/data/composited_selection_bounds_transformed.html
@@ -7,7 +7,7 @@
font-family: ahem;
}
#text {
- transform: rotate(30deg);
+ transform: rotate(-30deg);
}
</style>
<div id="text">The quick brown fox jumped over the lazy dog.</div>
@@ -18,6 +18,6 @@
range.setEnd(textNode, 25);
document.getSelection().addRange(range);
- window.expectedResult = [document, 157, -87, 151, -77, document, 313, 3, 307, 13];
+ window.expectedResult = [document, 151, 105, 157, 115, document, 307, 15, 313, 25];
</script>

Powered by Google App Engine
This is Rietveld 408576698