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

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

Issue 929213004: Plumb selection bounds as a single unit (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: TODO for moving WebSelectionBound Created 5 years, 8 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 }
9 </style>
10 <div contentEditable="true">
11 </div>
12 <script>
13 var textNode = document.getElementById("text");
14 textNode.focus();
15
16 var expectEditable = true;
17 var expectEmptyTextFormControl = false;
18 window.expectedResult = [document, 11, 11, 11, 25, document, 11, 11, 11, 25, expectEditable, expectEmptyTextFormControl];
19 </script>
20
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698