summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-typed-om/declared-styleMap-accepts-inherit.html
blob: f02cf98ef57f4d493ee1492398df7d4c181da20e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<meta charset="utf-8">
<title>Declared styleMap objects accept 'inherit' as a value</title>
<meta name="author" title="Shane Stephens">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
  <div id='element'></div>
  <div id="log"></div>
  <script>
    test(function() {
      element.attributeStyleMap.set('width', new CSSKeywordValue('inherit'));
      assert_equals(element.attributeStyleMap.get('width').value, 'inherit', 'inherit should be a valid value for styleMap properties');
    });
  </script>