Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7002)

Unified Diff: chrome/test/data/chromedriver/orientation_test.html

Issue 2230053002: [chromedriver] Added option to make element references W3C compliant. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed presubmit errors. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/data/chromedriver/element_ref.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/chromedriver/orientation_test.html
diff --git a/chrome/test/data/chromedriver/orientation_test.html b/chrome/test/data/chromedriver/orientation_test.html
new file mode 100644
index 0000000000000000000000000000000000000000..bfb74ebae9df390d2c79099b84a0d109bb171c75
--- /dev/null
+++ b/chrome/test/data/chromedriver/orientation_test.html
@@ -0,0 +1,16 @@
+<html>
+ <title>orientation test</title>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+ </head>
+ <body>
+ <script type="text/javascript">
+ screen.addEventListener("orientationchange", fucntion() {
+ elt = document.FindElementById('orientation');
+ elt.innerHTML = screen.orientation.type;
+ });
+ </script>
+ <div>
+ hello
+ </div>
+ </body>
+</html>
« no previous file with comments | « chrome/test/data/chromedriver/element_ref.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698