blob: 879b1919be1f08ba19399d42d7ec8c62eaa5c213 [file] [log] [blame]
<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>