mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
95b45892e6
--HG-- rename : extensions/universalchardet/tests/bug631751be_text.html => parser/htmlparser/tests/mochitest/file_bug672453_bomless_utf16.html
26 lines
654 B
HTML
26 lines
654 B
HTML
<!DOCTYPE HTML>
|
|
<html dir="ltr" xml:lang="en-US" lang="en-US"><head>
|
|
<meta charset="utf-8">
|
|
<title>Console extended API test</title>
|
|
<script type="text/javascript">
|
|
function test() {
|
|
console.log("start");
|
|
console.exception()
|
|
console.assert()
|
|
console.clear()
|
|
console.dirxml()
|
|
console.profile()
|
|
console.profileEnd()
|
|
console.count()
|
|
console.table()
|
|
console.log("end");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1 id="header">Heads Up Display Demo</h1>
|
|
<button onclick="test();">Test Extended API</button>
|
|
<div id="myDiv"></div>
|
|
</body>
|
|
</html>
|