| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <!-- | 3 <!-- |
| 4 Copyright 2013 The Chromium Authors. All rights reserved. | 4 Copyright 2013 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>IndexedDB shutdown test</title> | 9 <title>IndexedDB shutdown test</title> |
| 10 <script type="text/javascript" src="common.js"></script> | 10 <script type="text/javascript" src="common.js"></script> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 function test() { | 28 function test() { |
| 29 indexedDBTest(populate); | 29 indexedDBTest(populate); |
| 30 } | 30 } |
| 31 </script> | 31 </script> |
| 32 </head> | 32 </head> |
| 33 <body onLoad="test()"> | 33 <body onLoad="test()"> |
| 34 <div id="status">Starting...</div> | 34 <div id="status">Starting...</div> |
| 35 </body> | 35 </body> |
| 36 </html> | 36 </html> |
| OLD | NEW |