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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/spellmarkers/inline-spelling-markers-hidpi-composited.html

Issue 2736823002: Move tests in editing/spelling for marker appearance to paint/spellmarkers (Closed)
Patch Set: 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 unified diff | Download patch
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 .testDiv { 5 .testDiv {
6 width: 200px; 6 width: 200px;
7 height: 20px; 7 height: 20px;
8 border: 1px solid black; 8 border: 1px solid black;
9 white-space: nowrap; 9 white-space: nowrap;
10 overflow: hidden; 10 overflow: hidden;
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 const range = document.createRange(); 74 const range = document.createRange();
75 range.setStart(text, markerRange[0]); 75 range.setStart(text, markerRange[0]);
76 range.setEnd(text, markerRange[0] + markerRange[1]); 76 range.setEnd(text, markerRange[0] + markerRange[1]);
77 if (window.internals) 77 if (window.internals)
78 internals.setMarker(document, range, 'grammar'); 78 internals.setMarker(document, range, 'grammar');
79 }); 79 });
80 }); 80 });
81 </script> 81 </script>
82 </body> 82 </body>
83 </html> 83 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698