1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Regions: mouse over DOM location of content flowed in a region</title>
<link rel="author" title="Mihai Balan" href="mailto:mibalan@adobe.com">
<link rel="help" href="http://www.w3.org/TR/css3-regions/#the-flow-into-property">
<link rel="help" href="http://www.w3.org/TR/css3-regions/#flow-from">
<meta name="assert" 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)">
<meta name="flags" content="dom interact">
<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 id="source" class="box">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Recusandae eveniet. Explicabo veritatis adipisci praesentium placeat voluptates dolorum pariatur architecto itaque.</p>
</div>
<div id="region" class="box"></div>
<div class="box" id="shield"></div>
<div id="result" class=""></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>
|