mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
23 lines
232 B
HTML
23 lines
232 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>Test Page</title>
|
||
|
<style>
|
||
|
#problem {
|
||
|
left:0;
|
||
|
top:0;
|
||
|
width: 0;
|
||
|
overflow: hidden;
|
||
|
position: fixed;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div id="problem">
|
||
|
this should be hidden
|
||
|
</div>
|
||
|
|
||
|
page loaded
|
||
|
|
||
|
</body>
|
||
|
</html>
|