summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-transforms/css-transform-property-existence.html
blob: e00e8077c18304e0f03cfd9380c248467378fbf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>CSS Transforms Test: property existence</title>
    <link rel="author" title="Intel" href="http://www.intel.com">
    <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#propdef-transform">
    <meta name="flags" content="dom">
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
  </head>
  <body>
    <div id="test"></div>
    <div id="log"></div>
    <script>
      [
        'transform',
        'transform-origin',
        'transform-style',
        'perspective',
        'perspective-origin',
        'backface-visibility',
      ].forEach(property => {
        test(() => {
          assert_true(
            property in document.getElementById('test').style,
            `expect ${property}`,
          );
        }, `Check the existence of ${property}.`);
      });
    </script>
  </body>
</html>