| Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/storage_supported_property_names.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/storage_supported_property_names.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/storage_supported_property_names.html
|
| deleted file mode 100644
|
| index 2bacd29d583df87e3a318fa9bdf3f591e58e0707..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/storage_supported_property_names.html
|
| +++ /dev/null
|
| @@ -1,23 +0,0 @@
|
| -<!DOCTYPE HTML>
|
| -<meta charset=utf-8>
|
| -<title>Storage Test: Supported property names</title>
|
| -<script src="../../../resources/testharness.js"></script>
|
| -<script src="../../../resources/testharnessreport.js"></script>
|
| -<div id="log"></div>
|
| -<script>
|
| - ["localStorage", "sessionStorage"].forEach(function(name) {
|
| - test(function() {
|
| - var storage = window[name];
|
| - storage.clear();
|
| -
|
| - storage["name"] = "user1";
|
| - assert_array_equals(Object.getOwnPropertyNames(storage), ['name']);
|
| - }, "Object.getOwnPropertyNames on " + name + " Storage");
|
| -
|
| - test(function() {
|
| - var storage = window[name];
|
| - storage.clear();
|
| - assert_array_equals(Object.getOwnPropertyNames(storage), []);
|
| - }, "Object.getOwnPropertyNames on " + name + " storage with empty collection");
|
| - });
|
| -</script>
|
|
|