| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script type="text/javascript"> | 3 <script type="text/javascript"> |
| 4 var gl; | 4 var gl; |
| 5 // For some reason, when running this test in automated fashion, it | 5 // For some reason, when running this test in automated fashion, it |
| 6 // triggers the bug reliably if the first frame with back-to-back | 6 // triggers the bug reliably if the first frame with back-to-back |
| 7 // events happens a certain number of frames into the test execution. | 7 // events happens a certain number of frames into the test execution. |
| 8 var numFrames = 202; | 8 var numFrames = 202; |
| 9 var intensity = 255; | 9 var intensity = 255; |
| 10 var contextWasLost = false; | 10 var contextWasLost = false; |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 <select id="dropdown"> | 68 <select id="dropdown"> |
| 69 <option value="option1">option1</option> | 69 <option value="option1">option1</option> |
| 70 <option value="option2">option2</option> | 70 <option value="option2">option2</option> |
| 71 <option value="option3">option3</option> | 71 <option value="option3">option3</option> |
| 72 <option value="option4">option4</option> | 72 <option value="option4">option4</option> |
| 73 </select> | 73 </select> |
| 74 <canvas id="canvas1" width="32px" height="32px"> | 74 <canvas id="canvas1" width="32px" height="32px"> |
| 75 </canvas> | 75 </canvas> |
| 76 </body> | 76 </body> |
| 77 </html> | 77 </html> |
| OLD | NEW |