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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/security/cross-origin-css-primitive.html
diff --git a/LayoutTests/http/tests/security/cross-origin-css-primitive.html b/LayoutTests/http/tests/security/cross-origin-css-primitive.html
deleted file mode 100644
index 694b427028b77919319a717fd1116f42016de2a8..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/security/cross-origin-css-primitive.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<script>
-if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.dumpChildFramesAsText();
- testRunner.waitUntilDone();
-}
-</script>
-<style>
-.a { width: 0px; }
-.a { width: 100px; }
-.a { width: 50%; }
-.a { width: 1; }
-.a { color: red; }
-.a { color: rgb(0,0,0); }
-.a { color: rgb(255,255,255); }
-.a { color: rgba(0,0,0,255); }
-.a { color: rgba(0,0,0,0); }
-.a { color: inherit; }
-.a { color: initial; }
-</style>
-<script>
-values = new Array();
-var rules = document.getElementsByTagName('style')[0].sheet.cssRules;
-for(i = 0 ; i < rules.length; ++i) {
- var val = rules[i].style.getPropertyCSSValue('color');
- if (!val)
- val = rules[i].style.getPropertyCSSValue('width');
- values.push(val);
- val.foo = 1;
-}
-</script>
-Test that primitive value wrappers are not shared accross documents.<br>
-<iframe height=300 src="http://localhost:8000/security/resources/cross-origin-css-primitive-iframe.html"></iframe>
-
« 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