3 <script src=
"../../http/tests/inspector/inspector-test.js"></script>
4 <script src=
"../../http/tests/inspector/layers-test.js"></script>
8 function onSnapshotDone(snapshot
)
10 var wrappedCallback
= InspectorBackend
.wrapClientCallback(onHistoryReceived
, "LayerTreeAgent.snapshotCommandLog(): ");
11 InspectorTest
.LayerTreeAgent
.snapshotCommandLog(snapshot
._id
, wrappedCallback
);
14 function onHistoryReceived(history
)
16 InspectorTest
.addResult("Canvas log:");
17 InspectorTest
.addObject(history
, {"uniqueID": "skip"});
18 InspectorTest
.completeTest();
21 function onGotLayers()
23 var layer
= InspectorTest
.findLayerByNodeIdAttribute("a");
24 layer
.requestSnapshot(onSnapshotDone
);
27 InspectorTest
.requestLayers(onGotLayers
);
31 <body onload=
"runTest()">
32 <div id=
"a" style=
"transform: translateZ(0px); background-color:blue; width:100px; height:100px;">
33 <div style=
"width:50px; height:50px; background-color:red;"></div>
34 <img src=
"../tracing/resources/test.png">
36 <rect x=
"0" y=
"0" width=
"10" height=
"10" style=
"opacity:0.5"/>