summaryrefslogtreecommitdiffstats
path: root/WebCore/manual-tests/select-onchange-after-js.html
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-05-06 11:45:16 +0100
committerSteve Block <steveblock@google.com>2011-05-12 13:44:10 +0100
commitcad810f21b803229eb11403f9209855525a25d57 (patch)
tree29a6fd0279be608e0fe9ffe9841f722f0f4e4269 /WebCore/manual-tests/select-onchange-after-js.html
parent121b0cf4517156d0ac5111caf9830c51b69bae8f (diff)
downloadexternal_webkit-cad810f21b803229eb11403f9209855525a25d57.zip
external_webkit-cad810f21b803229eb11403f9209855525a25d57.tar.gz
external_webkit-cad810f21b803229eb11403f9209855525a25d57.tar.bz2
Merge WebKit at r75315: Initial merge by git.
Change-Id: I570314b346ce101c935ed22a626b48c2af266b84
Diffstat (limited to 'WebCore/manual-tests/select-onchange-after-js.html')
-rw-r--r--WebCore/manual-tests/select-onchange-after-js.html47
1 files changed, 0 insertions, 47 deletions
diff --git a/WebCore/manual-tests/select-onchange-after-js.html b/WebCore/manual-tests/select-onchange-after-js.html
deleted file mode 100644
index 4cdea0a..0000000
--- a/WebCore/manual-tests/select-onchange-after-js.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
- "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<body>
- <p>Test for <a href="http://bugs.webkit.org/show_bug.cgi?id=11402">bug 11402</a> and
- <a href="http://bugs.webkit.org/show_bug.cgi?id=12701">bug 12701</a>:
- An onChange event should fire when the first item is not the default, and
- after changing the value via JavaScript.</p>
- <p>After following the steps below, both selects should display "SUCCESS".</p>
-
- <form action="" method="post" name="areaform" id="areaform">
- <select name="selectitem" onChange="onChange1(this)">
- <option value="1">Please change this to another value</option>
- <option value="2">(to this one)</option>
- </select>
- </form>
- <form action="" method="post" name="areaform2" id="areaform2">
- <select name="selectitem2" onChange="onChange2(this)">
- <option value="1">(to this one)</option>
- <option value="2" selected>Please change this to another value</option>
- </select>
- </form>
-
- <script>
- function onChange1(sel) {
- if (sel.secondTry) {
- sel.options[1].text='SUCCESS';
- } else {
- sel.options[0].text='Please change this to another value once again';
- sel.value = '1';
- sel.secondTry = 1;
- }
- }
-
- function onChange2(sel) {
- if (sel.secondTry) {
- sel.options[0].text='SUCCESS';
- } else {
- sel.options[1].text='Please change this to another value once again';
- document.forms.areaform2.selectitem2.options[1].selected = true;
- sel.secondTry = 1;
- }
- }
- </script>
-
-</body>
-</html>