mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
a5342bd29d
The static functions just got moved with no changes made to them except for a change from inTypes->unknown() to inTypes->unknownObject() in the first test in TestAreKnownDOMTypes, becase the rest of the method depends on the stronger condition, and it was being ensured accidentally before.
12 lines
207 B
HTML
12 lines
207 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
var xhr = new XMLHttpRequest;
|
|
function f() {
|
|
var x = xhr.getResponseHeader;
|
|
x("abc");
|
|
}
|
|
for (var i = 0; i < 20000; ++i) {
|
|
try { f(); } catch (e) {}
|
|
}
|
|
</script>
|