Index: chrome/test/webdriver/test/not_clickable.html |
diff --git a/chrome/test/webdriver/test/not_clickable.html b/chrome/test/webdriver/test/not_clickable.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..30f7723315e7433007a683499c80c78617db0ed3 |
--- /dev/null |
+++ b/chrome/test/webdriver/test/not_clickable.html |
@@ -0,0 +1,15 @@ |
+<html> |
+ <style> |
+ .over { |
+ position: relative; |
+ top: -30px; |
+ height: 100px; |
+ background-color: black; |
+ opacity: 0.5; |
+ } |
+ </style> |
+ <body> |
+ <a name='click' href='javascript:console.log("clicked")'>Click</a> |
+ <div class='over'>ok</div> |
+ </body> |
+</html> |