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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/security/resources/cross-origin-css-primitive-iframe.html
diff --git a/LayoutTests/http/tests/security/resources/cross-origin-css-primitive-iframe.html b/LayoutTests/http/tests/security/resources/cross-origin-css-primitive-iframe.html
deleted file mode 100644
index 3ac484e88758757896e837d296b942f879b61262..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/security/resources/cross-origin-css-primitive-iframe.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<head>
-<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);
- document.write(val.foo ? "FAILED<br>" : "PASSED<br>");
-}
-if (window.testRunner)
- testRunner.notifyDone();
-</script>
« 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