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

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/idbfactory_cmp3.htm

Issue 2323113002: Revert "Import wpt@65954a35b4e0a5cee1f4839271ba0e44f187c0a6" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 3 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: third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/idbfactory_cmp3.htm
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/idbfactory_cmp3.htm b/third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/idbfactory_cmp3.htm
deleted file mode 100644
index 749fd7b8614913d60e2fe1635f5bd89d251f5a77..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/idbfactory_cmp3.htm
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<meta charset=utf-8>
-<title>IDBFactory.cmp() - compared keys in different types</title>
-<link rel="author" title="Mozilla" href="https://www.mozilla.org">
-<link rel="help" href="http://w3c.github.io/IndexedDB/#key-construct">
-<script src=/resources/testharness.js></script>
-<script src=/resources/testharnessreport.js></script>
-
-<script>
- test(function() {
- assert_equals(indexedDB.cmp([0], new Uint8Array([0])), 1, "Array > Binary");
- }, "Array v.s. Binary");
-
- test(function() {
- assert_equals(indexedDB.cmp(new Uint8Array([0]), "0"), 1, "Binary > String");
- }, "Binary v.s. String");
-
- test(function() {
- assert_equals(indexedDB.cmp("", new Date(0)), 1, "String > Date");
- }, "String v.s. Date");
-
- test(function() {
- assert_equals(indexedDB.cmp(new Date(0), 0), 1, "Date > Number");
- }, "Date v.s. Number");
-</script>
-
-<div id=log></div>

Powered by Google App Engine
This is Rietveld 408576698