diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
commit | 9364f22aed35e1a1e9d07c121510f80be3ab0502 (patch) | |
tree | d49911209b132da58d838efa852daf28d516df21 /WebCore/manual-tests/update-empty-popup.html | |
parent | 87eb0cb35bad8784770ebc807e6c982432e47107 (diff) | |
download | external_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.zip external_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.tar.gz external_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.tar.bz2 |
Initial Contribution
Diffstat (limited to 'WebCore/manual-tests/update-empty-popup.html')
-rw-r--r-- | WebCore/manual-tests/update-empty-popup.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/WebCore/manual-tests/update-empty-popup.html b/WebCore/manual-tests/update-empty-popup.html new file mode 100644 index 0000000..03462f2 --- /dev/null +++ b/WebCore/manual-tests/update-empty-popup.html @@ -0,0 +1,28 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" + "http://www.w3.org/TR/html4/strict.dtd"> +<html lang="en"> +<head> +</head> +<body> +<p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=13379">Bugzilla bug 13379</a> REGRESSION: Cannot add an option to a selected popup</p> + +<p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> +1. Click on the empty popup button.<br> +2. Click on the Test button. +</p> + +<p id="success" style="background-color:palegreen; padding:3px;"><b>TEST PASS:</b> +The popup button will change to display the word SUCCESS. +</p> + +<p id="failure" style="background-color:#FF3300; padding:3px;"><b>TEST FAIL:</b> +The popup button will become wider but will not display any text. Clicking the popup +once will not bring up the menu. +</p> + +<select id="select"></select> +<br> +<input type="button" onclick='document.getElementById("select").add(new Option("SUCCESS"))' value="Test"> + +</body> +</html> |