Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / printing / script-tests / numberOfPages.js
blob55efa87dd0b668cebdeaf8d84af3e0a62dd2efd9
1 description("Test for internals.numberOfPages()");
3 function test()
5     createBlockWithRatioToPageHeight("firstPage", 0.6);
6     createBlockWithRatioToPageHeight("secondPage", 0.6);
8     numberOfPagesShouldBe(2);
9     numberOfPagesShouldBe(1, 1000, 10000);
11     document.body.removeChild(document.getElementById("sandbox"));
14 var successfullyParsed = true;