| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../../http/tests/inspector/inspector-test.js"></script> | 3 <script src="../../http/tests/inspector/inspector-test.js"></script> |
| 4 <script src="../../http/tests/inspector/timeline-test.js"></script> | 4 <script src="../../http/tests/inspector/timeline-test.js"></script> |
| 5 <script> | 5 <script> |
| 6 function test() | 6 function test() |
| 7 { | 7 { |
| 8 function checkStringContains(string, contains) | 8 function checkStringContains(string, contains) |
| 9 { | 9 { |
| 10 var doesContain = string.indexOf(contains) >= 0; | 10 var doesContain = string.indexOf(contains) >= 0; |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 WebInspector.TimelineUIUtils._generateCauses(record.traceEvent()
, InspectorTest.timelineModel().target(), contentHelper); | 60 WebInspector.TimelineUIUtils._generateCauses(record.traceEvent()
, InspectorTest.timelineModel().target(), contentHelper); |
| 61 var causes = contentHelper.element.deepTextContent(); | 61 var causes = contentHelper.element.deepTextContent(); |
| 62 InspectorTest.check(causes, "Should generate causes"); | 62 InspectorTest.check(causes, "Should generate causes"); |
| 63 checkStringContains(causes, "Animation frame requestedrequestAni
mationFrameFunction @ requestAnimationFrameFunction.js:"); | 63 checkStringContains(causes, "Animation frame requestedrequestAni
mationFrameFunction @ requestAnimationFrameFunction.js:"); |
| 64 next(); | 64 next(); |
| 65 } | 65 } |
| 66 }, | 66 }, |
| 67 | 67 |
| 68 function testStyleRecalc(next) | 68 function testStyleRecalc(next) |
| 69 { | 69 { |
| 70 function styleRecalcFunction(callback) | 70 function styleRecalcFunction() |
| 71 { | 71 { |
| 72 var element = document.getElementById("testElement"); | 72 var element = document.getElementById("testElement"); |
| 73 element.style.backgroundColor = "papayawhip"; | 73 element.style.backgroundColor = "papayawhip"; |
| 74 callback(); | 74 var forceLayout = element.offsetWidth; |
| 75 } | 75 } |
| 76 | 76 |
| 77 var source = styleRecalcFunction.toString(); | 77 var source = styleRecalcFunction.toString(); |
| 78 source += "\n//@ sourceURL=styleRecalcFunction.js"; | 78 source += "\n//@ sourceURL=styleRecalcFunction.js"; |
| 79 InspectorTest.evaluateInPage(source); | 79 InspectorTest.evaluateInPage(source); |
| 80 | 80 |
| 81 InspectorTest.invokeAsyncWithTimeline("styleRecalcFunction", finishA
ndRunNextTest); | 81 InspectorTest.evaluateWithTimeline("styleRecalcFunction()", finishAn
dRunNextTest); |
| 82 function finishAndRunNextTest() | 82 function finishAndRunNextTest() |
| 83 { | 83 { |
| 84 var linkifier = new WebInspector.Linkifier(); | 84 var linkifier = new WebInspector.Linkifier(); |
| 85 var record = InspectorTest.findFirstTimelineRecord("UpdateLayout
Tree"); | 85 var record = InspectorTest.findFirstTimelineRecord("UpdateLayout
Tree"); |
| 86 InspectorTest.check(record, "Should receive a UpdateLayoutTree r
ecord."); | 86 InspectorTest.check(record, "Should receive a UpdateLayoutTree r
ecord."); |
| 87 var contentHelper = new WebInspector.TimelineDetailsContentHelpe
r(InspectorTest.timelineModel().target(), linkifier, null, true); | 87 var contentHelper = new WebInspector.TimelineDetailsContentHelpe
r(InspectorTest.timelineModel().target(), linkifier, null, true); |
| 88 WebInspector.TimelineUIUtils._generateCauses(record.traceEvent()
, InspectorTest.timelineModel().target(), contentHelper); | 88 WebInspector.TimelineUIUtils._generateCauses(record.traceEvent()
, InspectorTest.timelineModel().target(), contentHelper); |
| 89 var causes = contentHelper.element.deepTextContent(); | 89 var causes = contentHelper.element.deepTextContent(); |
| 90 InspectorTest.check(causes, "Should generate causes"); | 90 InspectorTest.check(causes, "Should generate causes"); |
| 91 checkStringContains(causes, "First invalidatedstyleRecalcFunctio
n @ styleRecalcFunction.js:"); | 91 checkStringContains(causes, "First invalidatedstyleRecalcFunctio
n @ styleRecalcFunction.js:"); |
| 92 next(); | 92 next(); |
| 93 } | 93 } |
| 94 }, | 94 }, |
| 95 | 95 |
| 96 function testLayout(next) | 96 function testLayout(next) |
| 97 { | 97 { |
| 98 function layoutFunction(callback) | 98 function layoutFunction() |
| 99 { | 99 { |
| 100 var element = document.getElementById("testElement"); | 100 var element = document.getElementById("testElement"); |
| 101 element.style.width = "200px"; | 101 element.style.width = "200px"; |
| 102 var forceLayout = element.offsetWidth; | 102 var forceLayout = element.offsetWidth; |
| 103 callback(); | |
| 104 } | 103 } |
| 105 | 104 |
| 106 var source = layoutFunction.toString(); | 105 var source = layoutFunction.toString(); |
| 107 source += "\n//@ sourceURL=layoutFunction.js"; | 106 source += "\n//@ sourceURL=layoutFunction.js"; |
| 108 InspectorTest.evaluateInPage(source); | 107 InspectorTest.evaluateInPage(source); |
| 109 | 108 |
| 110 InspectorTest.invokeAsyncWithTimeline("layoutFunction", finishAndRun
NextTest); | 109 InspectorTest.evaluateWithTimeline("layoutFunction()", finishAndRunN
extTest); |
| 111 function finishAndRunNextTest() | 110 function finishAndRunNextTest() |
| 112 { | 111 { |
| 113 var linkifier = new WebInspector.Linkifier(); | 112 var linkifier = new WebInspector.Linkifier(); |
| 114 var record = InspectorTest.findFirstTimelineRecord("Layout"); | 113 var record = InspectorTest.findFirstTimelineRecord("Layout"); |
| 115 InspectorTest.check(record, "Should receive a Layout record."); | 114 InspectorTest.check(record, "Should receive a Layout record."); |
| 116 var contentHelper = new WebInspector.TimelineDetailsContentHelpe
r(InspectorTest.timelineModel().target(), linkifier, null, true); | 115 var contentHelper = new WebInspector.TimelineDetailsContentHelpe
r(InspectorTest.timelineModel().target(), linkifier, null, true); |
| 117 WebInspector.TimelineUIUtils._generateCauses(record.traceEvent()
, InspectorTest.timelineModel().target(), contentHelper); | 116 WebInspector.TimelineUIUtils._generateCauses(record.traceEvent()
, InspectorTest.timelineModel().target(), contentHelper); |
| 118 var causes = contentHelper.element.deepTextContent(); | 117 var causes = contentHelper.element.deepTextContent(); |
| 119 InspectorTest.check(causes, "Should generate causes"); | 118 InspectorTest.check(causes, "Should generate causes"); |
| 120 checkStringContains(causes, "Layout forcedlayoutFunction @ layou
tFunction.js:"); | 119 checkStringContains(causes, "Layout forcedlayoutFunction @ layou
tFunction.js:"); |
| 121 checkStringContains(causes, "First layout invalidationlayoutFunc
tion @ layoutFunction.js:"); | 120 checkStringContains(causes, "First layout invalidationlayoutFunc
tion @ layoutFunction.js:"); |
| 122 next(); | 121 next(); |
| 123 } | 122 } |
| 124 } | 123 } |
| 125 ]); | 124 ]); |
| 126 } | 125 } |
| 127 </script> | 126 </script> |
| 128 </head> | 127 </head> |
| 129 | 128 |
| 130 <body onload="runTest()"> | 129 <body onload="runTest()"> |
| 131 <p> | 130 <p> |
| 132 Test that causes are correctly generated for various types of events. | 131 Test that causes are correctly generated for various types of events. |
| 133 </p> | 132 </p> |
| 134 <div id="testElement"></div> | 133 <div id="testElement"></div> |
| 135 </body> | 134 </body> |
| 136 </html> | 135 </html> |
| OLD | NEW |