blob: 3060cf1f128b321b00b51e6fb133cd68e745ea12 [file] [log] [blame]
<!DOCTYPE HTML>
<html>
<head>
<title>history_replaceState SECURITY_ERR</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="log"></div>
<script>
test(function () {
assert_throws("SecurityError", function () {
window.history.replaceState(1, document.title, 'http://www.microsoft.com/test.html');
});
}, "history replaceState SECURITY_ERR");
</script>
</body>
</html>