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.
9 lines
157 B
HTML
9 lines
157 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
var l = document.getElementsByTagName("*");
|
|
var count = 20000;
|
|
for (var i = 0; i < count; ++i) {
|
|
l.item(0);
|
|
}
|
|
</script>
|