summaryrefslogtreecommitdiffstats
path: root/WebCore/manual-tests/resources/hover-subframe-2.html
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/manual-tests/resources/hover-subframe-2.html')
-rw-r--r--WebCore/manual-tests/resources/hover-subframe-2.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/WebCore/manual-tests/resources/hover-subframe-2.html b/WebCore/manual-tests/resources/hover-subframe-2.html
new file mode 100644
index 0000000..ca4ca40
--- /dev/null
+++ b/WebCore/manual-tests/resources/hover-subframe-2.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html>
+<head>
+<style>
+body { margin: 0px; }
+.outer {
+ margin: -100px;
+ width: 400px;
+ height: 500px;
+ background-color: green;
+}
+.outer:hover {
+ background-color: red;
+}
+.inner {
+ visibility: hidden;
+ width: 100%;
+ height: 50%;
+ background-color: cyan;
+}
+</style>
+</head>
+
+<body>
+<div class="outer"
+ onmouseover="firstChild.style.visibility='visible'"
+ onmouseout="firstChild.style.visibility='hidden'"><div class="inner"></div></div>
+</body>
+</html>