https://github.com/web-platform-tests/wpt
Revision 622b6fd97abd374fdd18a783d12a684f3fa98e23 authored by Emil A Eklund on 18 December 2018, 22:56:53 UTC, committed by Philip Jägenstedt on 19 December 2018, 15:14:29 UTC
Change getComputedStyle to return the resolved value for line-height per
the CSSOM specification [1]. Specifically for 'normal' or invalid values
this will return the computed line-height instead of the specified ones.

1) https://drafts.csswg.org/cssom/#resolved-value

Bug: 383409
Test: wpt/css/cssom/line-height-resolved-value.html
Change-Id: Id58fdc700605779a7f34ccbefb62290e3eea1117
1 parent 712c9f2
Raw File
Tip revision: 622b6fd97abd374fdd18a783d12a684f3fa98e23 authored by Emil A Eklund on 18 December 2018, 22:56:53 UTC
Return resolved-value for ComputedStyle line-height
Tip revision: 622b6fd
combobox_haspopup_grid-manual.html
<!doctype html>
<html>
  <head>
    <title>combobox haspopup grid</title>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
    <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_COMBO_BOX"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_EXPANDABLE"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_EXPANDED"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_HAS_POPUP"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "haspopup:grid"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXComboBox"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "<nil>"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "combo box"
               ],
               [
                  "property",
                  "AXExpanded",
                  "is",
                  "true"
               ],
               [
                  "property",
                  "actions",
                  "contains",
                  "AXShowMenu"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "haspopup:grid"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_COMBOBOX"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_SYSTEM_HASPOPUP"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_SYSTEM_EXPANDED"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "Combobox"
               ],
               [
                  "property",
                  "interfaces",
                  "contains",
                  "ExpandCollapse pattern"
               ],
               [
                  "property",
                  "ExpandCollapse.ExpandCollapseState",
                  "is",
                  "Expanded"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "combobox haspopup grid"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for combobox haspopup grid.</p>
    <div aria-label="Tag" aria-haspopup="grid" id="test" role="combobox" aria-expanded="true" aria-owns="owned_grid">
    <input type="text" aria-autocomplete="list" aria-controls="owned_grid" aria-activedescendant="selected_cell">
  </div>
  <table id="owned_grid" role="grid">
    <tr>
      <th tabindex="-1" id="selected_cell" role="colomnheader">c1</th><th role="colomnheader">c2</th>
    </tr>
    <tr>
      <td role="gridcell">A1</td><td role="gridcell">A2</td>
    </tr>
    <tr>
      <td role="gridcell">A3</td><td role="gridcell">A4</td>
    </tr>
  </table>


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