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

Side by Side Diff: LayoutTests/http/tests/security/resources/cross-origin-css-primitive-iframe.html

Issue 682833005: Remove tests which only test getPropertyCSSValue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: missed an expectation file :| 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
(Empty)
1 <head>
2 <style>
3 .a { width: 0px; }
4 .a { width: 100px; }
5 .a { width: 50%; }
6 .a { width: 1; }
7 .a { color: red; }
8 .a { color: rgb(0,0,0); }
9 .a { color: rgb(255,255,255); }
10 .a { color: rgba(0,0,0,255); }
11 .a { color: rgba(0,0,0,0); }
12 .a { color: inherit; }
13 .a { color: initial; }
14 </style>
15 <script>
16 values = new Array();
17 var rules = document.getElementsByTagName('style')[0].sheet.cssRules;
18 for(i = 0 ; i < rules.length; ++i) {
19 var val = rules[i].style.getPropertyCSSValue('color');
20 if (!val)
21 val = rules[i].style.getPropertyCSSValue('width');
22 values.push(val);
23 document.write(val.foo ? "FAILED<br>" : "PASSED<br>");
24 }
25 if (window.testRunner)
26 testRunner.notifyDone();
27 </script>
OLDNEW
« no previous file with comments | « LayoutTests/http/tests/security/cross-origin-css-primitive-expected.txt ('k') | LayoutTests/platform/win/transforms/2d/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698