https://github.com/web-platform-tests/wpt
Revision f18c12095bf8bfcb73c0ab563b5c6f80de8656ef authored by Yngve N. Pettersen on 04 April 2018, 12:48:36 UTC, committed by Chromium WPT Sync on 04 April 2018, 12:48:36 UTC
A number of files seems to have been committed with unnecessary CRLFs.
This CL changes those files to only use LFs

Change-Id: I46d0ab26bfa2fa15596dcc1483a7024db21b7669
1 parent 162e9dd
Raw File
Tip revision: f18c12095bf8bfcb73c0ab563b5c6f80de8656ef authored by Yngve N. Pettersen on 04 April 2018, 12:48:36 UTC
Fixed CRLFs in source files to LFs
Tip revision: f18c120
doc-notice-manual.html
<!doctype html>
<html>
  <head>
    <title>doc-notice</title>
    <link rel="stylesheet" href="/resources/testharness.css">
    <link rel="stylesheet" href="/wai-aria/scripts/manual.css">
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script src="/wai-aria/scripts/ATTAcomm.js"></script>
    <script>
    setup({explicit_timeout: true, explicit_done: true });

    var theTest = new ATTAcomm(
    {
   "steps" : [
      {
         "element" : "test",
         "test" : {
            "ATK" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_COMMENT"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:doc-notice"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXGroup"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "AXDocumentNote"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "note"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:doc-notice"
               ],
               [
                  "property",
                  "role",
                  "is",
                  "IA2_ROLE_NOTE"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "Text"
               ],
               [
                  "property",
                  "LocalizedControlType",
                  "is",
                  "notice"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "doc-notice"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for doc-notice.</p>
    <div role="doc-notice" id="test">Text</div>

  <div id="manualMode"></div>
  <div id="log"></div>
  <div id="ATTAmessages"></div>
  </body>
</html>

back to top