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

Side by Side Diff: Source/web/tests/data/composited_selection_bounds_empty_editable_input.html

Issue 929213004: Plumb selection bounds as a single unit (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix test Created 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 <style>
2 @font-face {
3 font-family: ahem;
4 src: url(Ahem.ttf);
5 }
6 * {
7 font-family: ahem;
8 margin: 0;
9 padding: 0;
10 }
11 </style>
12 <input type="text" id="text"/>
13 <script>
14 var textNode = document.getElementById("text");
15 textNode.focus();
16
17 var expectEditable = true;
18 var expectEmptyTextFormControl = true;
19 window.expectedResult = [document, 2, 2, 2, 16, document, 2, 2, 2, 16, expec tEditable, expectEmptyTextFormControl];
20 </script>
21
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698