Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <body> | |
| 4 <script src="../resources/js-test.js"></script> | |
| 5 <script> | |
| 6 description("Validates that lockOrientation() can take an array as argument."); | |
| 7 | |
| 8 shouldBeEqualToString("screen.orientation", "portrait-primary"); | |
| 9 debug("locking orientation to ['portrait-primary', 'landscape-primary']."); | |
| 10 shouldBeTrue("screen.lockOrientation(['portrait-primary', 'landscape-primary'])" ); | |
| 11 </script> | |
| 12 </body> | |
| 13 </html> | |
| 14 | |
| OLD | NEW |