Index: third_party/webdriver/test_data/click_jacker.html |
diff --git a/third_party/webdriver/test_data/click_jacker.html b/third_party/webdriver/test_data/click_jacker.html |
deleted file mode 100644 |
index 602976684293ff4a52083c43440c3ce22429baac..0000000000000000000000000000000000000000 |
--- a/third_party/webdriver/test_data/click_jacker.html |
+++ /dev/null |
@@ -1,37 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
- <title>click-jacking</title> |
- <script> |
- var clickJacker; |
- |
- function setOpacity(opacity) { |
- if (window.navigator.userAgent.indexOf('MSIE') != -1) { |
- clickJacker.style.filter = 'alpha(opacity=' + (opacity * 100) + ')'; |
- } else { |
- clickJacker.style.opacity = opacity; |
- } |
- } |
- |
- function init() { |
- clickJacker = document.getElementById('clickJacker'); |
- setOpacity(0); |
- } |
- </script> |
-</head> |
-<body onload="init()"> |
-<div> |
- <div id="clickJacker" |
- onclick="setOpacity(1);" |
- style="position:absolute;float:left; |
- width:200px;height:100px; padding:10px; |
- background-color:darkred; |
- border:1px solid darkred;">Click jacked!</div> |
- <div style="width:200px; height:100px; |
- border:1px solid black; padding:10px">Click Me</div> |
- <script> |
- clickJacker = document.getElementById('clickJacker'); |
- </script> |
-</div> |
-</body> |
-</html> |