Revision 3dfc8e49e32a6b2f88979cf23ba5b64cbc8df541 authored by Mustaq Ahmed on 13 April 2018, 18:16:18 UTC, committed by Chromium WPT Sync on 13 April 2018, 18:16:18 UTC
Also added web-platform-tests.

Blink intent thread:
https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/G2s1Ol3qcgA

Closes https://github.com/w3c/pointerevents/issues/167

Bug: 827271
Change-Id: I8429b9541f8cfc38223b3a34116b74c2aba92ee5
Reviewed-on: https://chromium-review.googlesource.com/986877
Reviewed-by: Dave Tapuska <dtapuska@chromium.org>
Commit-Queue: Mustaq Ahmed <mustaq@chromium.org>
Cr-Commit-Position: refs/heads/master@{#550683}
1 parent 6ad1b51
Raw File
3.3.2-collectionCreatorAgentEmailImplemented.json
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "id": "3.3.2-collectionCreatorAgentEmailImplemented.json",
  "assertionType": "may",
  "expectedResult": "valid",
  "onUnexpectedResult" : "passAndContinue",
  "errorMessage": "Email for Annotation Collection Creator (Agent) not found. Agents may have one or more email values.",
  "title": "Implements Annotation Collection-level creator (Agent) **_email_ key** with one or more values, each of which is a **mailto: uri** - [model 3.2.2](https://www.w3.org/TR/annotation-model/#agents)",
  "description": "True when one or more email values for Annotation Collection Creator (Agent) is implemented (Section 3.3.2)",
  "properties":
  {  "creator":
    { "oneOf":
      [
      { "$ref": "otherProperties.json#/definitions/agentEmailFound" },
      { "type": "array",
        "minItems": 1,
        "not":
        { "items": { "not": { "$ref": "otherProperties.json#/definitions/agentEmailFound" } } }
      }
      ]
    }
  },
  "required": ["creator"]
}
back to top