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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/dom/location-stringify.html

Issue 1380503002: binding: Makes Window/Location's attributes accessor-type properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated a test result. 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/dom/location-stringify.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/dom/location-stringify.html b/third_party/WebKit/LayoutTests/http/tests/dom/location-stringify.html
index 9ef1ce71cadc5078b34b3ed3e9d5fa356cbd5407..91bc0e287b8e623ee290cfac2e0e7a2efcfc0114 100644
--- a/third_party/WebKit/LayoutTests/http/tests/dom/location-stringify.html
+++ b/third_party/WebKit/LayoutTests/http/tests/dom/location-stringify.html
@@ -21,7 +21,7 @@ function runTests() {
if (window.testRunner) {
testRunner.dumpAsText();
}
- assertEqual("stringify", JSON.stringify(window.location), '{"hash":"","search":"","pathname":"/dom/location-stringify.html","port":"8000","hostname":"127.0.0.1","host":"127.0.0.1:8000","protocol":"http:","origin":"http://127.0.0.1:8000","href":"http://127.0.0.1:8000/dom/location-stringify.html","ancestorOrigins":{}}');
+ assertEqual("stringify", JSON.stringify(window.location), '{"href":"http://127.0.0.1:8000/dom/location-stringify.html","ancestorOrigins":{},"origin":"http://127.0.0.1:8000","protocol":"http:","host":"127.0.0.1:8000","hostname":"127.0.0.1","port":"8000","pathname":"/dom/location-stringify.html","search":"","hash":""}');
}
</script>
</head>

Powered by Google App Engine
This is Rietveld 408576698