summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/large-integer-value-serializing.html
blob: 879b1919be1f08ba19399d42d7ec8c62eaa5c213 (plain)
1
2
3
4
5
6
7
8
9
10
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<div id="div"></div>
<script>
test(function(){
    div.style.zIndex = "2147483647";
    assert_equals(div.style.zIndex, "2147483647");
}, "Verify that large CSS integer values do not serialize with scientific notation.");

</script>