diff options
| author | jez | 2011-01-16 04:32:16 +0800 |
|---|---|---|
| committer | jez | 2011-01-16 04:36:50 +0800 |
| commit | ab8684af4245953c010c4048e8dae6434570bc8c (patch) | |
| tree | ae613392f3776e58ef167b48c43cf7052c5c2186 | |
| parent | 074a1ee6db458213ebef8230a9b67fbc6537c48b (diff) | |
| download | vimium-ab8684af4245953c010c4048e8dae6434570bc8c.tar.bz2 | |
Remove unnecessary properties on <a>
| -rw-r--r-- | test_harnesses/automated.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test_harnesses/automated.html b/test_harnesses/automated.html index 79e7ca8d..31a25823 100644 --- a/test_harnesses/automated.html +++ b/test_harnesses/automated.html @@ -57,8 +57,8 @@ setup(function() { var testContent = - "<a id='1' style='position: absolute; top: 17px; left: 19px;'>test</a>" + - "<a id='2'>tress</a>"; + "<a>test</a>" + + "<a>tress</a>"; document.getElementById("test-div").innerHTML = testContent; settings.values.filterLinkHints = isFilteredMode ? "true" : "false"; initializeLinkHints(); @@ -144,9 +144,9 @@ setup(function() { var testContent = - "<a id='1' style='position: absolute; top: 17px; left: 19px;'>test</a>" + - "<a id='2'>tress</a>" + - "<a id='3'>trait</a>" + + "<a>test</a>" + + "<a>tress</a>" + + "<a>trait</a>" + "<a>track<img alt='alt text'/></a>"; document.getElementById("test-div").innerHTML = testContent; linkHints.activateMode(); |
