Chromium Code Reviews| Index: chrome/test/data/page_with_contenteditable.html |
| diff --git a/chrome/test/data/page_with_contenteditable.html b/chrome/test/data/page_with_contenteditable.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f799ccb36d778c707b3e147a5270c2c285b6a271 |
| --- /dev/null |
| +++ b/chrome/test/data/page_with_contenteditable.html |
| @@ -0,0 +1,12 @@ |
| +<html> |
| +<head></head> |
| +<body> |
| +This page has a contenteditable div. |
| +<div contenteditable> |
| +zz. |
| +</div> |
| +<script> |
| +document.querySelector('div').focus(); |
| +</script> |
| +</body> |
| +</html> |