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

Unified Diff: third_party/WebKit/LayoutTests/fast/text/flexbox-selection-nested-expected.html

Issue 2728263002: Omit wrapped selection for text under inline containing block. (Closed)
Patch Set: Update baselines. Created 3 years, 9 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/LayoutTests/fast/text/flexbox-selection-nested-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/text/flexbox-selection-nested-expected.html b/third_party/WebKit/LayoutTests/fast/text/flexbox-selection-nested-expected.html
deleted file mode 100644
index 3d33f7ea5927760f5cc3b8f04c749f74ea3a93f8..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/text/flexbox-selection-nested-expected.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<style>
-#root {
- background-color: #ddd;
- font-size: 24pt;
- position: relative;
- width: 200px;
-}
-span {
- display: inline-block;
- width: 100px;
-}
-</style>
-
-This test verifies that a selection spanning nested flexbox boundaries
-is drawn correctly.
-
-<div id="root">
- <div>
- <span id="start">aaa</span><span>bbb</span>
- </div>
- <div>
- <span>ccc</span><span id="end">ddd</span>
- </div>
-</div>
-<script>
-
-var start = document.querySelector('#start'),
- end = document.querySelector('#end');
-getSelection().setBaseAndExtent(start.firstChild, 1, end.firstChild, 2);
-focus();
-
-</script>

Powered by Google App Engine
This is Rietveld 408576698