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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/IndexedDB/idbobjectstore-add-put-exception-order.html

Issue 2653923007: Upstream IndexedDB exception ordering tests to WPT. (Closed)
Patch Set: Rebased MANIFEST.json Created 3 years, 11 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/external/wpt/IndexedDB/idbobjectstore-add-put-exception-order.html
diff --git a/third_party/WebKit/LayoutTests/storage/indexeddb/idbobjectstore-add-put-exception-order.html b/third_party/WebKit/LayoutTests/external/wpt/IndexedDB/idbobjectstore-add-put-exception-order.html
similarity index 89%
rename from third_party/WebKit/LayoutTests/storage/indexeddb/idbobjectstore-add-put-exception-order.html
rename to third_party/WebKit/LayoutTests/external/wpt/IndexedDB/idbobjectstore-add-put-exception-order.html
index d9dcc4145c7b8886f9af8d6d5e1764a7c57f986a..6c76b6220cb62a78a4ace3b0e54469c2d2bcd16d 100644
--- a/third_party/WebKit/LayoutTests/storage/indexeddb/idbobjectstore-add-put-exception-order.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/IndexedDB/idbobjectstore-add-put-exception-order.html
@@ -1,14 +1,14 @@
-<!DOCTYPE html>
-<title>IndexedDB: IDBObjectStore add()/put() Exception Ordering</title>
+<!doctype html>
<meta charset=utf-8>
-<link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbobjectstore-add">
+<title>IndexedDB: IDBObjectStore add()/put() Exception Ordering</title>
<link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbobjectstore-put">
-<script src="../../resources/testharness.js"></script>
-<script src="../../resources/testharnessreport.js"></script>
-<script src="resources/testharness-helpers.js"></script>
+<link rel="help" href="https://w3c.github.io/IndexedDB/#dom-idbobjectstore-add">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="support.js"></script>
<script>
-['add', 'put'].forEach(method => {
+['put', 'add'].forEach(method => {
indexeddb_test(
(t, db) => {
const store = db.createObjectStore('s');

Powered by Google App Engine
This is Rietveld 408576698