mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-01 06:33:22 +00:00
39 lines
900 B
HTML
39 lines
900 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html dir="ltr" xml:lang="en-US" lang="en-US">
|
||
|
<head>
|
||
|
<meta charset="utf8">
|
||
|
<title>Test for bugs 720180, 800510 and 865288</title>
|
||
|
<script>
|
||
|
function testConsole() {
|
||
|
// same line and column number
|
||
|
for(var i = 0; i < 2; i++) {
|
||
|
console.log("foo repeat");
|
||
|
}
|
||
|
console.log("foo repeat"); console.error("foo repeat");
|
||
|
}
|
||
|
function testConsoleObjects() {
|
||
|
for (var i = 0; i < 3; i++) {
|
||
|
var o = { id: "abba" + i };
|
||
|
console.log("abba", o);
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
<style>
|
||
|
body {
|
||
|
background-image: foobarz;
|
||
|
}
|
||
|
p {
|
||
|
background-image: foobarz;
|
||
|
}
|
||
|
</style>
|
||
|
<!--
|
||
|
- Any copyright is dedicated to the Public Domain.
|
||
|
- http://creativecommons.org/publicdomain/zero/1.0/
|
||
|
-->
|
||
|
</head>
|
||
|
<body>
|
||
|
<p>Hello world!</p>
|
||
|
</body>
|
||
|
</html>
|
||
|
|