| Index: third_party/WebKit/LayoutTests/http/tests/security/suborigins/suborigin-cssRules.php
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/security/suborigins/suborigin-cssRules.php b/third_party/WebKit/LayoutTests/http/tests/security/suborigins/suborigin-cssRules.php
|
| index 1ef1fdd84a939497c438a9d34a448e29671c0c47..9f0d00272f1c6499c809fad76baa7acab793bc07 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/security/suborigins/suborigin-cssRules.php
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/security/suborigins/suborigin-cssRules.php
|
| @@ -4,6 +4,7 @@ header("Suborigin: foobar");
|
| <!DOCTYPE html>
|
| <html>
|
| <head>
|
| +<meta charset="utf-8">
|
| <title>Suborigin can't access cross origin cssRules</title>
|
| <script src="/resources/testharness.js"></script>
|
| <script src="/resources/testharnessreport.js"></script>
|
| @@ -11,9 +12,10 @@ header("Suborigin: foobar");
|
| </head>
|
| <script>
|
| window.onload = function() {
|
| - var sheet = document.styleSheets[0];
|
| - assert_equals(sheet.cssRules, null, "stylesheet rules should not be readable from a suborigin");
|
| - done();
|
| + var sheet = document.styleSheets[0];
|
| + assert_equals(sheet.cssRules, null,
|
| + 'stylesheet rules should not be readable from a suborigin');
|
| + done();
|
| };
|
| </script>
|
| </html>
|
|
|