gecko/browser/devtools/webconsole/test/test-repeated-messages.html

30 lines
665 B
HTML

<!DOCTYPE HTML>
<html dir="ltr" xml:lang="en-US" lang="en-US">
<head>
<meta charset="utf8">
<title>Test for bugs 720180 and 800510</title>
<script>
function testConsole() {
console.log("foo repeat"); console.log("foo repeat");
console.log("foo repeat"); console.error("foo repeat");
}
</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>