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

Side by Side Diff: LayoutTests/fast/repaint/quotes.html

Issue 1173723002: Rebaseline again some tests with wrong expectations (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="resources/text-based-repaint.js" type="text/javascript"></script> 2 <script src="resources/text-based-repaint.js" type="text/javascript"></script>
3 <script> 3 <script>
4 function repaintTest() 4 function repaintTest()
5 { 5 {
6 document.getElementById('q1').className = 'q-unchanged'; 6 document.getElementById('q1').className = 'q-unchanged';
7 document.getElementById('q2').className = 'q-changed'; 7 document.getElementById('q2').className = 'q-changed';
8 } 8 }
9 window.onload = runRepaintTest; 9 window.onload = runRepaintTest;
10 </script> 10 </script>
11 <style> 11 <style>
12 body {
13 font-family: Ahem;
14 }
15 .q { 12 .q {
16 quotes: '<' '>'; 13 quotes: '<' '>';
17 } 14 }
18 .q-changed { 15 .q-changed {
19 quotes: '{' '}'; 16 quotes: '{' '}';
20 } 17 }
21 .q-unchanged { 18 .q-unchanged {
22 quotes: '<' '>'; 19 quotes: '<' '>';
23 } 20 }
24 </style> 21 </style>
25 <div><q id="q1" class="q">quote 1</q></div> 22 <div><q id="q1" class="q">quote 1</q></div>
26 <div><q id="q2" class="q">quote 2</q></div> 23 <div><q id="q2" class="q">quote 2</q></div>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698