mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
34 lines
994 B
HTML
34 lines
994 B
HTML
|
<!DOCTYPE html>
|
||
|
<html xml:lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Inspector tree panel test</title>
|
||
|
<style type="text/css"><!--
|
||
|
#duplicate { color: green }
|
||
|
--></style>
|
||
|
<script type="text/javascript"><!--
|
||
|
function fooBarBaz(arg1) {
|
||
|
return true; // do nothing
|
||
|
}
|
||
|
// --></script>
|
||
|
</head>
|
||
|
<body arbitrary:attribute="value">
|
||
|
<p>Inspector tree panel test.</p>
|
||
|
|
||
|
<div id="foo" class="foo bar baz" style="border:1px solid red;
|
||
|
unknownProperty: unknownValue; color: withUnkownValue">
|
||
|
<unknownTag unknownAttribute="fooBar">
|
||
|
<p unknownAttribute="fooBar" data-test1="value">hello world!</p>
|
||
|
</unknownTag>
|
||
|
</div>
|
||
|
|
||
|
<div id="duplicate" id="duplicate" id="different" class="test" class="foo"
|
||
|
fooBar="baz" fooBar="bazbaz">test</div>
|
||
|
|
||
|
<iframe src="data:text/html,<div>hello from an iframe!</div>">no
|
||
|
frames!</iframe>
|
||
|
|
||
|
<!-- hello world from a comment! -->
|
||
|
</body>
|
||
|
</html>
|