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

Side by Side Diff: Source/web/tests/data/composited_selection_bounds_editable.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 <textarea id="text">
13 The quick brown fox jumped over the lazy dog.
14 </textarea>
15 <script>
16 var textNode = document.getElementById("text");
17 textNode.focus();
18
19 var expectEditable = true;
20 var expectEmptyTextFormControl = false;
21 window.expectedResult = [document, 1, 1, 1, 15, document, 1, 1, 1, 15, expec tEditable, expectEmptyTextFormControl];
jdduke (slow) 2015/03/20 20:00:15 Any guidance on how to ensure consistent sizing ac
yoichio 2015/03/26 03:39:15 It can render in different layout on each platform
22 </script>
23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698