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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/security/create-document-change-domain.html

Issue 1911493004: Don't copy the security origin when creating a document (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updates Created 4 years, 8 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: third_party/WebKit/LayoutTests/http/tests/security/create-document-change-domain.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/create-document-change-domain.html b/third_party/WebKit/LayoutTests/http/tests/security/create-document-change-domain.html
index 4eada7a786db8c09079c227f4a75a4c1ad2b0d10..ae40c85eeacc895461840e3c90a0ba6e913aa7e9 100644
--- a/third_party/WebKit/LayoutTests/http/tests/security/create-document-change-domain.html
+++ b/third_party/WebKit/LayoutTests/http/tests/security/create-document-change-domain.html
@@ -15,10 +15,10 @@
document.domain = 'example.test';
assert_equals(document.domain, 'example.test');
- assert_equals(doc.domain, 'subdomain.example.test');
+ assert_equals(doc.domain, 'example.test');
document.domain = 'subdomain.example.test';
- }, "Documents created using createDocument do not share the underlying domain.");
+ }, "Documents created using createDocument share the underlying domain.");
}
</script>
</head>

Powered by Google App Engine
This is Rietveld 408576698