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

Side by Side Diff: LayoutTests/fast/css/inherited-properties-rare-text.html

Issue 703323002: Continue removing testing of getPropertyCSSValue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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 <script> 1 <script>
2 if (window.testRunner) 2 if (window.testRunner)
3 testRunner.dumpAsText(); 3 testRunner.dumpAsText();
4 </script> 4 </script>
5 <style> 5 <style>
6 .a { -webkit-font-feature-settings: 'dlig'; -webkit-font-smoothing: antialiased; -webkit-text-orientation: upright; } 6 .a { -webkit-font-feature-settings: 'dlig'; -webkit-font-smoothing: antialiased; -webkit-text-orientation: upright; }
7 </style> 7 </style>
8 <div class=a> 8 <div class=a>
9 <div id=test1></div> 9 <div id=test1></div>
10 </div> 10 </div>
11 <div id=test2></div> 11 <div id=test2></div>
12 <script> 12 <script>
13 function test(e, p) { 13 function test(e, p) {
14 var testDiv = document.getElementById(e); 14 var testDiv = document.getElementById(e);
15 var cssValue = window.getComputedStyle(testDiv).getPropertyCSSValue(p); 15 var value = window.getComputedStyle(testDiv).getPropertyValue(p);
16 document.write(e + " " + p + ": " + cssValue.cssText + "<br>"); 16 document.write(e + " " + p + ": " + value + "<br>");
17 } 17 }
18 18
19 test('test1', '-webkit-font-feature-settings'); 19 test('test1', '-webkit-font-feature-settings');
20 test('test2', '-webkit-font-feature-settings'); 20 test('test2', '-webkit-font-feature-settings');
21 test('test1', '-webkit-font-smoothing'); 21 test('test1', '-webkit-font-smoothing');
22 test('test2', '-webkit-font-smoothing'); 22 test('test2', '-webkit-font-smoothing');
23 test('test1', '-webkit-text-orientation'); 23 test('test1', '-webkit-text-orientation');
24 test('test2', '-webkit-text-orientation'); 24 test('test2', '-webkit-text-orientation');
25 </script> 25 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/inherited-properties-explicit-expected.txt ('k') | LayoutTests/fast/css/large-value-csstext.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698