blob: 8822a1a3e432f03b4fb033e74856ce12d23f3bb9 [file] [log] [blame]
(async function(testRunner) {
var {page, session, dp} = await testRunner.startBlank('Tests that Paint Profiler refuses to load a picture with empty dimensions');
var response = await dp.LayerTree.loadSnapshot({
tiles: [{
x: 351378,
y: -15,
picture: 'c2tpYXBpY3QqAAAAiYICRsMkWkF3URZGz3Z9QgcAAAABZGFlcgAAAAB0Y2FmBAAAAAAAAABjZnB0AAAAAHlhcmEAAAAAIGZvZQ=='
}]
});
testRunner.log('Loading empty snapshot: ' + response.error);
testRunner.completeTest();
})