mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
38 lines
1.1 KiB
HTML
38 lines
1.1 KiB
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>localStorage different port numbers</title>
|
|
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="text/javascript" src="interOriginTest2.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
|
|
<script type="text/javascript">
|
|
|
|
function startTest()
|
|
{
|
|
var functionCalled = false;
|
|
is(localStorage instanceof Storage, true, "localStorage is instance of Storage");
|
|
Storage.prototype.exists = function(key) {
|
|
functionCalled = true;
|
|
return this.getItem(key) != null;
|
|
}
|
|
localStorage.setItem("test_prototype", "value");
|
|
is(functionCalled, false, "Overridden function not called");
|
|
is(localStorage.exists("test_prototype"), true, "Prototype overridden");
|
|
is(functionCalled, true, "Overridden function called");
|
|
localStorage.clear();
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body onload="startTest();">
|
|
</body>
|
|
</html>
|