mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 05:11:16 +00:00
5761ab0613
--HG-- extra : rebase_source : 1a308943960b6253d7f367b452fd5e181195599f
16 lines
213 B
HTML
16 lines
213 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
|
|
function boom() {
|
|
document.evaluate("a", document.documentElement, null, 4096, null);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom()"></body>
|
|
</html>
|