| Index: third_party/WebKit/LayoutTests/fast/forms/datalist/datalist.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/forms/datalist/datalist.html b/third_party/WebKit/LayoutTests/fast/forms/datalist/datalist.html
|
| deleted file mode 100644
|
| index 7528ab963c1e0346062e0567e78a70392e094578..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/forms/datalist/datalist.html
|
| +++ /dev/null
|
| @@ -1,33 +0,0 @@
|
| -<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
|
| -<html>
|
| -<head>
|
| -<script src="../../../resources/js-test.js"></script>
|
| -</head>
|
| -<body>
|
| -<p id="description"></p>
|
| -<div id="console"></div>
|
| -
|
| -<datalist id="dl1">
|
| - The choices are
|
| - <option>value1</option>,
|
| - <option value="value2">label2</option>,
|
| - <option label="label3">value3</option>, and
|
| - <option id="o4">value4</option>.
|
| - <option></option>
|
| -</datalist>
|
| -
|
| -<script>
|
| -description('Test for the datalist element.');
|
| -
|
| -var datalist = document.getElementById('dl1');
|
| -// An option element with empty value is not included.
|
| -shouldBe('datalist.options.length', '4');
|
| -
|
| -document.getElementById('o4').disabled = true;
|
| -// A disabled option element is not included.
|
| -shouldBe('datalist.options.length', '3');
|
| -// After datalist is implemented, the expected text should not contain the
|
| -// text in the datalist element.
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|