| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <!-- | 3 <!-- |
| 4 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
| 6 found in the LICENSE file. | 6 found in the LICENSE file. |
| 7 --> | 7 --> |
| 8 <head> | 8 <head> |
| 9 <title>Flash Topmost Check Example/Test</title> | 9 <title>Flash Topmost Check Example/Test</title> |
| 10 </head> | 10 </head> |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 <embed id="plugin" type="application/x-ppapi-example-flash-topmost" | 94 <embed id="plugin" type="application/x-ppapi-example-flash-topmost" |
| 95 width="400" height="400" | 95 width="400" height="400" |
| 96 style="left:200px;top:400px;" /> | 96 style="left:200px;top:400px;" /> |
| 97 <div id="box2" style="left:200px;top:500px;" | 97 <div id="box2" style="left:200px;top:500px;" |
| 98 onmousedown="onMouseDown(event)">Box #2</div> | 98 onmousedown="onMouseDown(event)">Box #2</div> |
| 99 <div id="box3" style="left:0px;top:0px;" | 99 <div id="box3" style="left:0px;top:0px;" |
| 100 onmousedown="onMouseDown(event)">Box #3</div> | 100 onmousedown="onMouseDown(event)">Box #3</div> |
| 101 | 101 |
| 102 </body> | 102 </body> |
| 103 </html> | 103 </html> |
| OLD | NEW |