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

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

Issue 2303013002: Add UMA metric to track usage of sending a mousedown to select elements. (Closed)
Patch Set: W3C auto test import CL. 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/idbfactory_cmp3.htm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/idb_binary_key_conversion.htm
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/idb_binary_key_conversion.htm b/third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/idb_binary_key_conversion.htm
new file mode 100644
index 0000000000000000000000000000000000000000..b55e6324b349987750816d49efb9eb908a845724
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/idb_binary_key_conversion.htm
@@ -0,0 +1,79 @@
+<!DOCTYPE html>
+<meta charset=utf-8>
+<title>Verify the coversion of various types of BufferSource</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() {
+ let binary = new ArrayBuffer(0);
+ let key = IDBKeyRange.lowerBound(binary).lower;
+
+ assert_true(key instanceof ArrayBuffer);
+ assert_equals(key.byteLength, 0);
+ assert_equals(key.byteLength, binary.byteLength);
+ }, "Empty ArrayBuffer");
+
+ test(function() {
+ let binary = new ArrayBuffer(4);
+ let dataView = new DataView(binary);
+ dataView.setUint32(0, 1234567890);
+
+ let key = IDBKeyRange.lowerBound(binary).lower;
+
+ assert_true(key instanceof ArrayBuffer);
+ assert_equals(key.byteLength, 4);
+ assert_equals(dataView.getUint32(0), new DataView(key).getUint32(0));
+ }, "ArrayBuffer");
+
+ test(function() {
+ let binary = new ArrayBuffer(4);
+ let dataView = new DataView(binary);
+ dataView.setUint32(0, 1234567890);
+
+ let key = IDBKeyRange.lowerBound(dataView).lower;
+
+ assert_true(key instanceof ArrayBuffer);
+ assert_equals(key.byteLength, 4);
+ assert_equals(dataView.getUint32(0), new DataView(key).getUint32(0));
+ }, "DataView");
+
+ test(function() {
+ let binary = new ArrayBuffer(4);
+ let dataView = new DataView(binary);
+ let int8Array = new Int8Array(binary);
+ int8Array.set([16, -32, 64, -128]);
+
+ let key = IDBKeyRange.lowerBound(int8Array).lower;
+ let keyInInt8Array = new Int8Array(key);
+
+ assert_true(key instanceof ArrayBuffer);
+ assert_equals(key.byteLength, 4);
+ for(let i = 0; i < int8Array.length; i++) {
+ assert_equals(keyInInt8Array[i], int8Array[i]);
+ }
+ }, "TypedArray(Int8Array)");
+
+ test(function() {
+ let binary = new ArrayBuffer(4);
+ let dataView = new DataView(binary);
+ let int8Array = new Int8Array(binary);
+ int8Array.set([16, -32, 64, -128]);
+
+ let key = IDBKeyRange.lowerBound([int8Array]).lower;
+
+ assert_true(key instanceof Array);
+ assert_true(key[0] instanceof ArrayBuffer);
+ assert_equals(key[0].byteLength, 4);
+
+ let keyInInt8Array = new Int8Array(key[0]);
+
+ for(let i = 0; i < int8Array.length; i++) {
+ assert_equals(keyInInt8Array[i], int8Array[i]);
+ }
+ }, "Array of TypedArray(Int8Array)");
+</script>
+
+<div id=log></div>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/idbfactory_cmp3.htm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698