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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/select-align.html

Issue 1509853008: Move select/option/optgroup-related tests in fast/forms to fast/forms/select. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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: third_party/WebKit/LayoutTests/fast/forms/select-align.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/select-align.html b/third_party/WebKit/LayoutTests/fast/forms/select-align.html
deleted file mode 100644
index e6b0cded27f71a02b5aea3ccd117fcab1cea2d5e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/select-align.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<html>
-<head>
- <title>Align in select test</title>
- <style type="text/css">
- select { width: 300px; }
- </style>
-</head>
-<body>
- <p>The following select elements should all be rendered on the left, with their text left justified.</p>
- <select align="right"><option>This is should be left justified.</option></select>
- <br>
- <select align="left"><option>This is should be left justified.</select>
- <br>
- <select align="center"><option>This is should be left justified.</option></select>
- <br>
- <select><option>This is should be left justified.</option></select>
- <br>
-
- <select id="test1"><option>This is should be left justified.</option></select>
- <script>
- <!--
- var obj1 = document.getElementById('test1');
- obj1.setAttribute('align', 'right');
- -->
- </script>
-
- <div id='insertionpoint'></div>
- <script>
- <!--
- var ins = document.getElementById('insertionpoint');
- var obj2 = document.createElement('SELECT');
- obj2.setAttribute('align', 'right');
- var option = document.createElement('OPTION');
- option.appendChild(document.createTextNode('This is should be left justified.'));
- obj2.appendChild(option);
- ins.appendChild(obj2);
- //-->
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698