https://github.com/web-platform-tests/wpt
Revision 017de5e2eb6f68de296052e957a72417e2aa13f4 authored by Hwanseung Lee on 20 March 2018, 00:47:12 UTC, committed by Chromium WPT Sync on 20 March 2018, 00:47:12 UTC
pointer-events[1] are added to support in whitelist.
there are some camelcase keywords in pointer-events.
actually pre-defined keywords are interpreted
ASCII case-insensitively[2].
so it was changed to accept camelcase keyword in tests.
and test file are also added.

[1]https://svgwg.org/svg2-draft/interact.html#PointerEventsProperty
[2]https://drafts.csswg.org/css-values-4/#keywords

Bug: 820299
Change-Id: Iccc0f88a69bbec68964ef55bcc5c471fea765ccf
Reviewed-on: https://chromium-review.googlesource.com/968581
Reviewed-by: Darren Shen <shend@chromium.org>
Commit-Queue: Hwanseung Lee <hwanseung@chromium.org>
Cr-Commit-Position: refs/heads/master@{#544232}
1 parent 3ec34e5
Raw File
Tip revision: 017de5e2eb6f68de296052e957a72417e2aa13f4 authored by Hwanseung Lee on 20 March 2018, 00:47:12 UTC
[css-typed-om] support pointer-events property
Tip revision: 017de5e
nfc_recordType_opaque-manual.https.html
<!DOCTYPE html>
<meta charset=utf-8>
<title>Web NFC Test: push and watch opaque records</title>
<link rel="author" title="Intel" href="http://www.intel.com"/>
<link rel="help" href="https://w3c.github.io/web-nfc/"/>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/nfc_help.js"></script>
<meta name="flags" content="interact">
<meta name="timeout" content="long">

<p>Tap an NFC tag to the test device with NFC support.</p>

<p>Note: All the actions need to be done in 60 seconds, otherwise it will get TIMEOUT.</p>

<div id="log"></div>

<script>

"use strict";

setup({ explicit_timeout: true });

let desc = "Test that nfc.push and nfc.watch succeed when recordType is set to 'opaque'."
let watchOptions = {
  recordType : "opaque",
  mediaType : "application/octet-stream",
  url : ""
}
let message = createMessage([createOpaqueRecord(test_buffer_data)]);

testNFCMessage(message, watchOptions, desc);

</script>
back to top