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

Unified Diff: LayoutTests/http/tests/security/subresourceIntegrity/subresource-integrity-style-blocked.html

Issue 622783004: Implementation of subresource integrity attribute for style sheets. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase on ToT Created 6 years, 2 months 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/subresourceIntegrity/subresource-integrity-style-blocked.html
diff --git a/LayoutTests/http/tests/security/subresourceIntegrity/subresource-integrity-style-blocked.html b/LayoutTests/http/tests/security/subresourceIntegrity/subresource-integrity-style-blocked.html
new file mode 100644
index 0000000000000000000000000000000000000000..b4a09a960ab4b2df6b1fe4f85ef85d5dfa52483c
--- /dev/null
+++ b/LayoutTests/http/tests/security/subresourceIntegrity/subresource-integrity-style-blocked.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Subresource integrity blocked style resources</title>
+ <script src="../../resources/testharness.js"></script>
+
+ <link rel="stylesheet" href="style-1-of-3.css" integrity="ni://sha256;BpfBw7ivV8q2jLiT13fxDYAe2tJllusRSZ273h2nFSE="></link>
+ <link rel="stylesheet" href="style-2-of-3.css" integrity="ni://sha384;XVVXBGoYw6AJOh9J/Z8pBDMVVPfkBpngexkA7JqZu8d5GENND6TEIup/tA1v5GPr"></link>
+ <link rel="stylesheet" href="style-3-of-3.css" integrity="ni://sha512;tbUPioKbVBplr0b1ucnWB57SJWt4x9dOE0Vy2mzCXvH3FepqDZ+07yMK81ytlg0MPaIrPAjcHqba5csorDWtKg=="></link>
+ </head>
+ <body>
+ <script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+ </script>
+ <p id="p1">Test 1</p>
+ <p id="p2">Test 2</p>
+ <p id="p3">Test 3</p>
+
+ <script>
+ var color = window.getComputedStyle(document.querySelector('#p1')).color;
+ assert_not_equals(color, "rgb(0, 128, 0)", "The p#1 element's text should not be green.");
+ color = window.getComputedStyle(document.querySelector('#p2')).color;
+ assert_not_equals(color, "rgb(0, 128, 0)", "The p#2 element's text should not be green.");
+ color = window.getComputedStyle(document.querySelector('#p3')).color;
+ assert_not_equals(color, "rgb(0, 128, 0)", "The p#3 element's text should not be green.");
+ </script>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698