summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-env/seralization-round-tripping.tentative.html
blob: 26a9afee011fedb0e0297e0e35686330b10a9905 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
  <head>
    <link rel="help" href="https://drafts.csswg.org/css-env-1/">
    <title>Test style seralization round tripping with CSS env vars</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
  </head>
  <body>
    <script>
    test(() => {
      document.body.style.top = "env(test)";
      assert_equals(document.body.style.getPropertyValue("top"), "env(test)");
      document.body.style.setProperty("top", "env()");
      assert_equals(document.body.style.getPropertyValue("top"), "env(test)");
    });
    </script>
  </body>
</html>