Index: third_party/WebKit/LayoutTests/http/tests/security/suborigins/suborigin-no-document-suborigin.html |
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/suborigins/suborigin-no-document-suborigin.html b/third_party/WebKit/LayoutTests/http/tests/security/suborigins/suborigin-no-document-suborigin.html |
index 54be4bcbcd21b9540f8946fe7f4da9378b0aec3a..db3fe2d5af8d2ed651139ff9c3d551aac5d8fc7b 100644 |
--- a/third_party/WebKit/LayoutTests/http/tests/security/suborigins/suborigin-no-document-suborigin.html |
+++ b/third_party/WebKit/LayoutTests/http/tests/security/suborigins/suborigin-no-document-suborigin.html |
@@ -1,12 +1,15 @@ |
<!DOCTYPE html> |
<html> |
<head> |
+<meta charset="utf-8"> |
<title>Validate lack of document.suborigin</title> |
<script src="/resources/testharness.js"></script> |
<script src="/resources/testharnessreport.js"></script> |
</head> |
<script> |
-assert_equals(document.suborigin, "", "document.suborigin should not exist when the page doesn't have a suborigin."); |
+assert_equals(document.suborigin, '', |
+ 'document.suborigin should not exist when the page doesn\'t have a ' + |
+ 'suborigin.'); |
done(); |
</script> |
</html> |