blob: 72d340409c03d874dc9990ceef0dfbcfcd6c5142 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<body onload="runTest();">
<div style="transform: translateZ(0); position: relative; left: 10px; top: 40px">
<div style="position: relative; left: 10px; top: 70px">
This test is successful if no green rectangles are visible.
</div>
<script>
function runTest() {
if (window.testRunner) {
window.testRunner.notifyDone();
} else {
debug("This test requires DumpRenderTree.");
}
}
</script>
</body>
</html>
|