summaryrefslogtreecommitdiffstats
path: root/WebCore/manual-tests/qt
diff options
context:
space:
mode:
authorFeng Qian <fqian@google.com>2009-06-17 12:12:20 -0700
committerFeng Qian <fqian@google.com>2009-06-17 12:12:20 -0700
commit5f1ab04193ad0130ca8204aadaceae083aca9881 (patch)
tree5a92cd389e2cfe7fb67197ce14b38469462379f8 /WebCore/manual-tests/qt
parent194315e5a908cc8ed67d597010544803eef1ac59 (diff)
downloadexternal_webkit-5f1ab04193ad0130ca8204aadaceae083aca9881.zip
external_webkit-5f1ab04193ad0130ca8204aadaceae083aca9881.tar.gz
external_webkit-5f1ab04193ad0130ca8204aadaceae083aca9881.tar.bz2
Get WebKit r44544.
Diffstat (limited to 'WebCore/manual-tests/qt')
-rw-r--r--WebCore/manual-tests/qt/plugin-iframe.html26
-rw-r--r--WebCore/manual-tests/qt/plugin-sibling-frame-include.html16
-rw-r--r--WebCore/manual-tests/qt/plugin-sibling-frame.html6
3 files changed, 48 insertions, 0 deletions
diff --git a/WebCore/manual-tests/qt/plugin-iframe.html b/WebCore/manual-tests/qt/plugin-iframe.html
new file mode 100644
index 0000000..ee838ba
--- /dev/null
+++ b/WebCore/manual-tests/qt/plugin-iframe.html
@@ -0,0 +1,26 @@
+<html>
+ <head>
+ <style>
+ html, body {
+ background-color: blue;
+ color: white;
+ }
+ #spacer {
+ width: 100%;
+ height: 1000px;
+ background-color: yellow;
+ }
+ </style>
+ </script>
+ </head>
+ <body>
+ <p>
+ Scroll the view, ensure that plugin scrolls in sync with the view.
+ </p>
+
+ <iframe src="plugin-sibling-frame-include.html" width="200" height="200"
+ frameborder="0" scrolling="auto" name="myInlineFrame"></iframe>
+ <div id="spacer"><p>content</p></div>
+ </body>
+</html>
+
diff --git a/WebCore/manual-tests/qt/plugin-sibling-frame-include.html b/WebCore/manual-tests/qt/plugin-sibling-frame-include.html
new file mode 100644
index 0000000..ca509e9
--- /dev/null
+++ b/WebCore/manual-tests/qt/plugin-sibling-frame-include.html
@@ -0,0 +1,16 @@
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<title>ClickToFlash Test File</title>
+</head>
+
+<body bgcolor="#000">
+
+ <embed src="http://www.youtube.com/v/loXfcsXRB-w&#038;hl=en&#038;fs=1"
+ type="application/x-shockwave-flash">
+ </embed>
+
+</body>
+
+</html>
diff --git a/WebCore/manual-tests/qt/plugin-sibling-frame.html b/WebCore/manual-tests/qt/plugin-sibling-frame.html
new file mode 100644
index 0000000..74e339a
--- /dev/null
+++ b/WebCore/manual-tests/qt/plugin-sibling-frame.html
@@ -0,0 +1,6 @@
+<html>
+<head><title>Move the frame to hide the plugin fully</title></head>
+<frameset cols="25%,50%,25%">
+ <frame src="plugin-sibling-frame-include.html">
+</frameset>
+</html>