Index: third_party/WebKit/LayoutTests/nfc/mock-nfc.html |
diff --git a/third_party/WebKit/LayoutTests/nfc/mock-nfc.html b/third_party/WebKit/LayoutTests/nfc/mock-nfc.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5bb8ca646caab1ebbda98c06c60f0cb9d91616dd |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/nfc/mock-nfc.html |
@@ -0,0 +1,15 @@ |
+<!DOCTYPE html> |
+<script src="../resources/testharness.js"></script> |
+<script src="../resources/testharnessreport.js"></script> |
+<script src="../resources/testharness-helpers.js"></script> |
+<script src="../resources/mojo-helpers.js"></script> |
+<script src="resources/nfc-helpers.js"></script> |
+<script> |
+ |
+'use strict'; |
+ |
+nfc_test(nfc => { |
+ assert_true(nfc instanceof Object); |
+ assert_true(nfc.mockNFC instanceof Object); |
+}, 'NFC Mojo bindings and mock interfaces are available to tests.') |
+</script> |