mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +02:00
11 lines
235 B
HTML
11 lines
235 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
onload = function() {
|
|
document.open();
|
|
document.close();
|
|
parent.report(window.setTimeout === setTimeout, false, "setTimeout");
|
|
parent.report(window === this, true, "this");
|
|
parent.done();
|
|
}
|
|
</script>
|