blob: 7b0e0a289b46f48f5bdb33ec9f713af664b7afed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<html>
<body>
This tests that NPN_GetURLNotify works as expected and does not ASSERT intermittently in debug builds.
<embed name="plg" type="application/x-webkit-test-netscape"></embed>
<script>
function notify()
{
if (window.testRunner)
testRunner.notifyDone();
}
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
plg.getURLNotify("resources/load-me-1.txt", null, "notify");
</script>
</body>
</html>
|