blob: 4b4869c7f79f4450fd15803885265d5d5534cbf6 [file] [log] [blame]
<!DOCTYPE html>
<head>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
</script>
</head>
<body>
<script>
if (document.location.hostname == "127.0.0.1") {
document.location.hostname = "subdomain.example.test";
} else {
test(function() {
document.domain = 'EXAMPLE.TEST';
assert_equals(document.domain, 'example.test');
document.domain = 'subdomain.eXamPle.tEst';
assert_equals(document.domain, 'subdomain.example.test');
}, 'document.domain goes through proper canonicalization.');
}
</script>