Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1067)

Unified Diff: webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection_call_as_function.html

Issue 55025: Remove tests that have been upstreamed. Update test_expectations list... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection_call_as_function.html
===================================================================
--- webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection_call_as_function.html (revision 12664)
+++ webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection_call_as_function.html (working copy)
@@ -1,32 +0,0 @@
-<html>
-<body>
-
-<select id='s'>
- <option id='o0'>o0</option>
- <option id='o1'>o1</option>
-</select>
-
-<script>
-if (window.layoutTestController) {
- layoutTestController.dumpAsText();
-}
-
-var select = document.getElementById('s');
-var options = select.options;
-
-try {
- var o0 = options(0);
- var o1 = options(1);
- if (document.getElementById('o0') == o0 &&
- document.getElementById('o1') == o1) {
- document.write('PASS');
- } else {
- document.write('FAIL');
- }
-} catch(e) {
- document.write('FAIL: threw exception ' + e);
-}
-</script>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698