summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/cssom/cssstyledeclaration-csstext-important.html
blob: c7a10643ac923dfbc119c8f38a195f68c593b166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>

<style>
    #box {}
</style>

<div id="box"></div>

<script>
  var style = document.getElementById('box').style;
  test(function(){
      style.cssText = "padding: 10px !important; padding-left: 20px;";
      assert_equals(style.getPropertyValue("padding-left"), "10px");
  }, "padding-left should be taken from the !important property");
</script>