diff options
Diffstat (limited to 'WebCore/manual-tests')
4 files changed, 54 insertions, 0 deletions
diff --git a/WebCore/manual-tests/drag-image-table-part-decorations.html b/WebCore/manual-tests/drag-image-table-part-decorations.html index 467cc54..28aa175 100644 --- a/WebCore/manual-tests/drag-image-table-part-decorations.html +++ b/WebCore/manual-tests/drag-image-table-part-decorations.html @@ -14,3 +14,6 @@ <fieldset style="background-color: blue; border: none; height: 100px; width: 100px;"><legend></legend></fieldset> <div style="width: 94px; height: 94px; border: solid; -webkit-user-drag: element; margin-top: -50px; "></div> + +<table style="border-collapse: collapse;"><tr><td style="border-bottom: 100px solid blue; width: 100px;"></td></tr></table> +<div style="width: 94px; height: 94px; border: solid; -webkit-user-drag: element; margin-top: -50px; "></div> diff --git a/WebCore/manual-tests/onbeforeunload-focused-iframe.html b/WebCore/manual-tests/onbeforeunload-focused-iframe.html new file mode 100644 index 0000000..9ef0dfa --- /dev/null +++ b/WebCore/manual-tests/onbeforeunload-focused-iframe.html @@ -0,0 +1,31 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" + "http://www.w3.org/TR/html4/strict.dtd"> +<html lang="en"> +<head> +</head> +<BODY onbeforeunload="return 'onBeforeUnloadHandler return string is displayed here.';"> +<p><b>BUG ID:</b> <a href="https://bugs.webkit.org/show_bug.cgi?id=27481">27481</a> onbeforeunload not called at window close + frame or iframe focused</p> + +<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> +<ol> + <li>Close this browser window while the inner frame has focus. +</ol> +</p> + +<p id="success" style="background-color:palegreen; padding:3px;"><b>TEST PASS:</b> +After the close button is clicked, you should see a dialog that reads:</p> +<pre>Are you sure you want to navigate away from this page? + +onBeforeUnloadHandler return string is displayed here. + +Press OK to continue or Cancel to stay on the current page.</pre> + +<p id="failure" style="background-color:#FF3300; padding:3px;"><b>TEST FAIL:</b> +No dialog (as described above) when closing the browser window. +</p> + +<BODY onbeforeunload="return 'onBeforeUnloadHandler return string is displayed here.';"> +<iframe src="resources/focused-iframe.html"></iframe> +<p>Close this browser window.</p> +</body> +</html> diff --git a/WebCore/manual-tests/resources/focused-iframe.html b/WebCore/manual-tests/resources/focused-iframe.html new file mode 100644 index 0000000..50b49a5 --- /dev/null +++ b/WebCore/manual-tests/resources/focused-iframe.html @@ -0,0 +1,12 @@ +<html> +<body onload="load()"> + This frame should get the focus. + <input id="box"></input> + <script> + function load() + { + document.getElementById("box").focus(); + } + </script> +</body> +</html> diff --git a/WebCore/manual-tests/win/horizontal-scroll-composited.html b/WebCore/manual-tests/win/horizontal-scroll-composited.html new file mode 100644 index 0000000..c977300 --- /dev/null +++ b/WebCore/manual-tests/win/horizontal-scroll-composited.html @@ -0,0 +1,8 @@ +<div> +<b>Scroll test for composited elements on Windows.</b> +</div> +<div>Make sure you browser window is smaller than 1000 pixels so that you see an horizontal scroll bar. +<br /> +Try scolling right and left and verify that the content is displayed correctly. +</div> +<div style="-webkit-transform: translatez(0); width: 1000px; height: 800px; border-style: solid; border-color: Red; border-width: 3px; background-image: url(../resources/apple.jpg); background-repeat:repeat"></div> |