Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / large-integer-value-serializing.html
blob879b1919be1f08ba19399d42d7ec8c62eaa5c213
1 <script src="../../resources/testharness.js"></script>
2 <script src="../../resources/testharnessreport.js"></script>
3 <div id="div"></div>
4 <script>
5 test(function(){
6 div.style.zIndex = "2147483647";
7 assert_equals(div.style.zIndex, "2147483647");
8 }, "Verify that large CSS integer values do not serialize with scientific notation.");
10 </script>