aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md8
-rw-r--r--tests/dom_tests/dom_tests.coffee2
2 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 2547b978..07d0d010 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
Vimium - The Hacker's Browser
=============================
-[![Build Status](https://secure.travis-ci.org/philc/vimium.png?branch=master)](https://travis-ci.org/philc/vimium)
+[![Build Status](https://travis-ci.org/philc/vimium.svg?branch=master)](https://travis-ci.org/philc/vimium)
Vimium is a Chrome extension that provides keyboard-based navigation and control of the web in the spirit of
the Vim editor.
@@ -12,7 +12,7 @@ You can install the stable version of Vimium from the
[Chrome Extensions Gallery](https://chrome.google.com/extensions/detail/dbepggeogbaibhgnhhndojpepiihcmeb).
Please see
-[CONTRIBUTING.md](https://github.com/philc/vimium/blob/master/CONTRIBUTING.md#installing-from-source)
+[CONTRIBUTING.md](CONTRIBUTING.md#installing-from-source)
for instructions on how you can install Vimium from source.
The Options page can be reached via a link on the help dialog (type `?`) or via the button next to Vimium on
@@ -150,12 +150,12 @@ Shifts are automatically detected so, for example, `<c-&>` corresponds to ctrl+s
More documentation
------------------
Many of the more advanced or involved features are documented on
-[Vimium's github wiki](https://github.com/philc/vimium/wiki). Also
+[Vimium's GitHub wiki](https://github.com/philc/vimium/wiki). Also
see the [FAQ](https://github.com/philc/vimium/wiki/FAQ).
Contributing
------------
-Please see [CONTRIBUTING.md](https://github.com/philc/vimium/blob/master/CONTRIBUTING.md) for details.
+Please see [CONTRIBUTING.md](CONTRIBUTING.md) for details.
Firefox Support
---------------
diff --git a/tests/dom_tests/dom_tests.coffee b/tests/dom_tests/dom_tests.coffee
index 5439e119..a5c85606 100644
--- a/tests/dom_tests/dom_tests.coffee
+++ b/tests/dom_tests/dom_tests.coffee
@@ -76,7 +76,7 @@ createGeneralHintTests = (isFilteredMode) ->
assertStartPosition = (element1, element2) ->
assert.equal element1.getClientRects()[0].left, element2.getClientRects()[0].left
assert.equal element1.getClientRects()[0].top, element2.getClientRects()[0].top
- stub document.body, "style", "static"
+ stub document.body.style, "position", "static"
linkHints = activateLinkHintsMode()
hintMarkers = getHintMarkers()
assertStartPosition document.getElementsByTagName("a")[0], hintMarkers[0]