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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/overflow/text-match-highlight.html

Issue 1972273002: Let repaint tests test pixels by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 <script src="../../fast/repaint/resources/text-based-repaint.js"></script> 2 <script src="../../fast/repaint/resources/repaint.js"></script>
3 <script> 3 <script>
4 function highlightRange(id, start, end, active) { 4 function highlightRange(id, start, end, active) {
5 var range = document.createRange(); 5 var range = document.createRange();
6 var elem = document.getElementById(id).firstChild; 6 var elem = document.getElementById(id).firstChild;
7 range.setStart(elem, start); 7 range.setStart(elem, start);
8 range.setEnd(elem, end); 8 range.setEnd(elem, end);
9 internals.addTextMatchMarker(range, active); 9 internals.addTextMatchMarker(range, active);
10 } 10 }
11 function repaintTest() { 11 function repaintTest() {
12 highlightRange('1', 0, 6, false); 12 highlightRange('1', 0, 6, false);
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 <text x="10" y="100" style="font-size: 10px; font-family: monospace;" id="sv g2">Findme in a typewriter!</text> 44 <text x="10" y="100" style="font-size: 10px; font-family: monospace;" id="sv g2">Findme in a typewriter!</text>
45 <g transform="scale(0.3) translate(0 400)"> 45 <g transform="scale(0.3) translate(0 400)">
46 <text font-family="Verdana" font-size="42.5" fill="blue" > 46 <text font-family="Verdana" font-size="42.5" fill="blue" >
47 <textPath xlink:href="#textpath" id="svg3">Findme on a path! Did you fin dme?</textPath> 47 <textPath xlink:href="#textpath" id="svg3">Findme on a path! Did you fin dme?</textPath>
48 </text> 48 </text>
49 </g> 49 </g>
50 </svg> 50 </svg>
51 <div style="height: 1000px"></div> 51 <div style="height: 1000px"></div>
52 </div> 52 </div>
53 53
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698