diff options
Diffstat (limited to 'layout/reftests/css-visited/content-color-on-link-before-1.html')
-rw-r--r-- | layout/reftests/css-visited/content-color-on-link-before-1.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/layout/reftests/css-visited/content-color-on-link-before-1.html b/layout/reftests/css-visited/content-color-on-link-before-1.html new file mode 100644 index 000000000..bea15972f --- /dev/null +++ b/layout/reftests/css-visited/content-color-on-link-before-1.html @@ -0,0 +1,8 @@ +<!DOCTYPE HTML> +<title>Test for privacy restrictions on :visited (Bug 147777)</title> +<style type="text/css"> +a { text-decoration: none } +:link:before { content: "link"; color: fuchsia; } +:visited:before { content: "visited"; color: purple; } +</style> +<a href="unvisited-page.html"></a> |