| Index: LayoutTests/inspector/tracing.html
|
| diff --git a/LayoutTests/inspector/tracing.html b/LayoutTests/inspector/tracing.html
|
| index 1d013de509bec356be4a276d6cebae2d6e154fca..45a81aafa9f376a1bafa70ef5408eaa28cc035c3 100644
|
| --- a/LayoutTests/inspector/tracing.html
|
| +++ b/LayoutTests/inspector/tracing.html
|
| @@ -12,7 +12,9 @@ div#test {
|
| <script>
|
| function doWork()
|
| {
|
| - document.getElementById("test").style.display = "block";
|
| + var element = document.getElementById("test");
|
| + element.style.display = "block";
|
| + var unused = element.clientWidth;
|
| }
|
|
|
| function test()
|
|
|