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

Side by Side Diff: LayoutTests/http/tests/security/cross-origin-css-primitive.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
« no previous file with comments | « no previous file | LayoutTests/http/tests/security/cross-origin-css-primitive-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <script>
2 if (window.testRunner) {
3 testRunner.dumpAsText();
4 testRunner.dumpChildFramesAsText();
5 testRunner.waitUntilDone();
6 }
7 </script>
8 <style>
9 .a { width: 0px; }
10 .a { width: 100px; }
11 .a { width: 50%; }
12 .a { width: 1; }
13 .a { color: red; }
14 .a { color: rgb(0,0,0); }
15 .a { color: rgb(255,255,255); }
16 .a { color: rgba(0,0,0,255); }
17 .a { color: rgba(0,0,0,0); }
18 .a { color: inherit; }
19 .a { color: initial; }
20 </style>
21 <script>
22 values = new Array();
23 var rules = document.getElementsByTagName('style')[0].sheet.cssRules;
24 for(i = 0 ; i < rules.length; ++i) {
25 var val = rules[i].style.getPropertyCSSValue('color');
26 if (!val)
27 val = rules[i].style.getPropertyCSSValue('width');
28 values.push(val);
29 val.foo = 1;
30 }
31 </script>
32 Test that primitive value wrappers are not shared accross documents.<br>
33 <iframe height=300 src="http://localhost:8000/security/resources/cross-origin-cs s-primitive-iframe.html"></iframe>
34
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/http/tests/security/cross-origin-css-primitive-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698