diff options
author | Brandon Aaron <brandon.aaron@gmail.com> | 2009-05-14 14:44:31 +0000 |
---|---|---|
committer | Brandon Aaron <brandon.aaron@gmail.com> | 2009-05-14 14:44:31 +0000 |
commit | ec3ebd3e8a7dfda15d227ea3dd21361e534beac3 (patch) | |
tree | eb86118bd6010bffedec2166eacb89e1298d9449 /test/index.html | |
parent | b763cc6602fdf2bede16be5bf106ceaa1d1d0525 (diff) | |
download | jquery-ec3ebd3e8a7dfda15d227ea3dd21361e534beac3.tar.gz jquery-ec3ebd3e8a7dfda15d227ea3dd21361e534beac3.zip |
opacity is now retrieved from stylesheet in IE. fixes #3981
Diffstat (limited to 'test/index.html')
-rw-r--r-- | test/index.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/index.html b/test/index.html index 634dacbd0..dfd46fbef 100644 --- a/test/index.html +++ b/test/index.html @@ -4,6 +4,9 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jQuery Test Suite</title> <link rel="Stylesheet" media="screen" href="qunit/testsuite.css" /> + <style type="text/css" media="screen"> + ol#empty { opacity: 0; filter:Alpha(opacity=0); } /* for testing opacity set in styles in IE */ + </style> <!-- Includes --> <script type="text/javascript"> var jQuery = this.jQuery || "jQuery", // For testing .noConflict() |