| Index: third_party/WebKit/Source/web/tests/data/long_press_links_and_images.html
|
| diff --git a/third_party/WebKit/Source/web/tests/data/long_press_links_and_images.html b/third_party/WebKit/Source/web/tests/data/long_press_links_and_images.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ea0b29fe7ca000177a818e9720d4b58ec7265602
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/web/tests/data/long_press_links_and_images.html
|
| @@ -0,0 +1,19 @@
|
| +<html>
|
| +<head>
|
| + <script>
|
| + function onLoad() {
|
| + var anchor = document.getElementById("anchorTag");
|
| + anchor.addEventListener("dragstart", function(event) { document.title = "anchor dragstart"; });
|
| + anchor.addEventListener("contextmenu", function(event) { document.title = "anchor contextmenu"; });
|
| +
|
| + var image = document.getElementById("imageTag");
|
| + image.addEventListener("dragstart", function(event) { document.title = "image dragstart"; });
|
| + image.addEventListener("contextmenu", function(event) { document.title = "image contextmenu"; })
|
| + }
|
| +</script>
|
| +</head>
|
| +<body onload="onLoad()">
|
| + <a id="anchorTag" href="http://www.example.com">Link to example.com</a>
|
| + <img id="imageTag" src="foo.png" width="100" height="100"> Link to an image. </img>
|
| +</body>
|
| +<html>
|
|
|