diff options
Diffstat (limited to 'tests/webkitwidgets/qwebview/resources')
4 files changed, 21 insertions, 0 deletions
diff --git a/tests/webkitwidgets/qwebview/resources/frame_a.html b/tests/webkitwidgets/qwebview/resources/frame_a.html new file mode 100644 index 000000000..9ff68f13a --- /dev/null +++ b/tests/webkitwidgets/qwebview/resources/frame_a.html @@ -0,0 +1,2 @@ +<a href="http://google.com/" target="frame_b"><img src="" width=100 height=100 alt="Google"></a> +<a href="http://yahoo.com/" target="frame_b"><img src="" width=100 height=100 alt="Yahoo"></a> diff --git a/tests/webkitwidgets/qwebview/resources/index.html b/tests/webkitwidgets/qwebview/resources/index.html new file mode 100644 index 000000000..c53ad09a7 --- /dev/null +++ b/tests/webkitwidgets/qwebview/resources/index.html @@ -0,0 +1,4 @@ +<frameset cols="25%,75%"> + <frame src="http://code.qt.io/frame_a.html" name="frame_a"> + <frame src="http://code.qt.io/frame_b.html" name="frame_b"> +</frameset> diff --git a/tests/webkitwidgets/qwebview/resources/input_types.html b/tests/webkitwidgets/qwebview/resources/input_types.html new file mode 100644 index 000000000..2e893afae --- /dev/null +++ b/tests/webkitwidgets/qwebview/resources/input_types.html @@ -0,0 +1,9 @@ +<html><body> +<input type='text' maxlength='20' style='position: absolute; left: 10px; top: 0px; height: 50px; width: 100px;'/><br> +<input type='password' style='position: absolute; left: 10px; top: 50px; height: 50px; width: 100px;'/><br> +<input type='tel' style='position: absolute; left: 10px; top: 100px; height: 50px; width: 100px;'/><br> +<input type='number' style='position: absolute; left: 10px; top: 150px; height: 50px; width: 100px;'/><br> +<input type='email' style='position: absolute; left: 10px; top: 200px; height: 50px; width: 100px;'/><br> +<input type='url' style='position: absolute; left: 10px; top: 250px; height: 50px; width: 100px;'/><br> +<textarea style='position: absolute; left: 10px; top: 310px; height: 50px; width: 100px;' rows="2" cols="20">blah blah blah blah</textarea><br> +</body></html> diff --git a/tests/webkitwidgets/qwebview/resources/scrolltest_page.html b/tests/webkitwidgets/qwebview/resources/scrolltest_page.html new file mode 100644 index 000000000..18fcbbebe --- /dev/null +++ b/tests/webkitwidgets/qwebview/resources/scrolltest_page.html @@ -0,0 +1,6 @@ +<html> +<head><title>Scrolling test</title></head> +<body> + <div style="width: 1000px; height: 1000px; background-color: green"/> +</body> +</html> |