| Index: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/base-uri-deny.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/base-uri-deny.html b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/base-uri-deny.html
|
| index 0ec855cf80f9d89fade7a64ec1fe4aeda8ade0a7..43dc620b60a3eca9ad23ecbc1d84b437df21f783 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/base-uri-deny.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/base-uri-deny.html
|
| @@ -10,7 +10,7 @@
|
| var expectations = {
|
| 'documentURI': document.location.toString(),
|
| 'referrer': document.referrer,
|
| - 'blockedURI': 'http://example.com',
|
| + 'blockedURI': 'http://example.com/base',
|
| 'violatedDirective': 'base-uri \'self\'',
|
| 'effectiveDirective': 'base-uri',
|
| 'originalPolicy': 'base-uri \'self\'',
|
| @@ -20,7 +20,7 @@
|
|
|
| function run() {
|
| var base = document.createElement('base');
|
| - base.href = 'http://example.com/';
|
| + base.href = 'http://example.com/base';
|
| document.head.appendChild(base);
|
|
|
| shouldBe('document.baseURI', 'document.location.href');
|
|
|