Index: third_party/WebKit/LayoutTests/http/tests/security/suborigins/suborigin-document-suborigin.html |
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/suborigins/suborigin-document-suborigin.html b/third_party/WebKit/LayoutTests/http/tests/security/suborigins/suborigin-document-suborigin.html |
index c257fd2a8c47a3b1dbfaa8b4f47d8169b4d7000b..fd02fa1e89f9faa2edf59d77efab623b47ec6c9d 100644 |
--- a/third_party/WebKit/LayoutTests/http/tests/security/suborigins/suborigin-document-suborigin.html |
+++ b/third_party/WebKit/LayoutTests/http/tests/security/suborigins/suborigin-document-suborigin.html |
@@ -7,9 +7,10 @@ |
</head> |
<script> |
window.onmessage = function(event) { |
- assert_equals(event.data.type, 'iframe'); |
- assert_equals(event.data.suborigin, "foobar", "document.suborigin should exist when page has a suborigin."); |
- done(); |
+ assert_equals(event.data.type, 'iframe'); |
+ assert_equals(event.data.suborigin, 'foobar', |
+ 'document.suborigin should exist when page has a suborigin.'); |
+ done(); |
} |
</script> |
<iframe src="resources/post-document-to-parent.php?suborigin=foobar&type=iframe"></iframe> |