servo/tests/wpt/css-tests/css-regions-1_dev/xhtml1print/mouse-events-003.xht

101 lines
No EOL
2.6 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"><head>
<meta charset="UTF-8" />
<title>CSS Regions: mouse over DOM location of content flowed in a region</title>
<link href="mailto:mibalan@adobe.com" rel="author" title="Mihai Balan" />
<link href="http://www.w3.org/TR/css3-regions/#the-flow-into-property" rel="help" />
<link href="http://www.w3.org/TR/css3-regions/#flow-from" rel="help" />
<meta content="Mouse events should not fire over the would-be location of the content nodes (where they would have been rendered were they not flowed in a region)" name="assert" />
<meta content="dom interact" name="flags" />
<style>
body {
margin: 0;
padding: 20px;
}
.box {
width: 200px;
height: 200px;
float: left;
margin: 20px;
}
#source {
background-color: lightblue;
}
#source p {
flow-into: flow;
}
#region {
background-color: lightgreen;
flow-from: flow;
}
#shield {
opacity: 0.01;
background-color: white;
z-index: 100;
position: relative;
left: -240px;
}
#result {
clear: both;
}
.pass {
color: green;
font-weight: bold;
}
.fail {
color: red;
font-weight: bold;
}
</style>
</head>
<body>
This test passes if you never see red during the test or the word "FAIL" and all expected results happen when following the steps below:
<ol>
<li>You should see a blue empty square and a green square with text</li>
<li>Move the mouse over the blue empty square <strong>Expected:</strong> The text "PASS" appears under the blue square.</li>
</ol>
<div class="box" id="source">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Recusandae eveniet. Explicabo veritatis adipisci praesentium placeat voluptates dolorum pariatur architecto itaque.</p>
</div>
<div class="box" id="region"></div>
<div id="shield" class="box"></div>
<div class="" id="result"></div>
<script type="text/javascript">
var target = document.querySelector("#source p");
function finishTest() {
if (window.testRunner) {
testRunner.notifyDone();
}
}
target.parentElement.addEventListener("mouseover", function(evt) {
var tag = document.querySelector("#result");
result;
if (evt.target != evt.currentTarget) {
result = "FAIL";
} else {
result = "PASS";
}
tag.innerHTML = result;
tag.classList.add(result.toLowerCase());
finishTest();
}, true);
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
eventSender.enableDOMUIEventLogging();
eventSender.mouseMoveTo(10, 40);
eventSender.mouseMoveTo(100, 100);
eventSender.mouseUp();
}
</script>
</body></html>