https://github.com/web-platform-tests/wpt
Raw File
Tip revision: dd481055a1da9b97baeb0848789c398f1ffeaa6d authored by Philip Jägenstedt on 27 September 2018, 10:31:44 UTC
[cssom] Add a test for border shorthand property
Tip revision: dd48105
display_inline-flex_exist.html
<!DOCTYPE html>
<html>
  <head>
    <title>CSS Flexible Box Test: display_inline-flex</title>
    <link rel="author" title="Intel" href="http://www.intel.com" />
    <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-containers" />
    <meta name="flags" content="dom" />
    <meta name="assert" content="Check if the web engine can identify the display value inline-flex." />
    <style>
      div#test{
        display: inline-flex;
      }
    </style>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
  </head>
  <body>
    <div id=log></div>
    <div id=test></div>
    <script type="text/javascript">
        var t = async_test(document.title, {timeout:500});
        t.step(function () {
            assert_equals(window.getComputedStyle(document.querySelector('div#test')).display, "inline-flex", "Display value is");
        });
        t.done();
    </script>
  </body>
</html>
back to top