diff options
author | jeresig <jeresig@gmail.com> | 2011-03-24 19:52:45 -0400 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2011-03-24 19:52:45 -0400 |
commit | 7b985c4ca0cc687998302483000f2dcf9dcb9bce (patch) | |
tree | 7206ea3ec126951e513e4498b3b89976616eab3d /test/data/offset | |
parent | 5ee4eefb9eb9f571f33afcb9462d9a2f6f8e5547 (diff) | |
download | jquery-7b985c4ca0cc687998302483000f2dcf9dcb9bce.tar.gz jquery-7b985c4ca0cc687998302483000f2dcf9dcb9bce.zip |
Oops, that test file for bug #8316 was needed - was also missing an include and was causing errors.
Diffstat (limited to 'test/data/offset')
-rw-r--r-- | test/data/offset/bug_8316.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/test/data/offset/bug_8316.html b/test/data/offset/bug_8316.html new file mode 100644 index 000000000..ce32a2826 --- /dev/null +++ b/test/data/offset/bug_8316.html @@ -0,0 +1,30 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html> + <head> + <meta http-equiv="Content-type" content="text/html; charset=utf-8"> + <title>bug_8316</title> + <style type="text/css" media="screen"> + #elem { + background-color: #000; + height: 100px; + width: 100px; + position: fixed; + } + </style> + <script src="../../../src/core.js"></script> + <script src="../../../src/deferred.js"></script> + <script src="../../../src/support.js"></script> + <script src="../../../src/sizzle/sizzle.js"></script> + <script src="../../../src/sizzle-jquery.js"></script> + <script src="../../../src/traversing.js"></script> + <script src="../../../src/data.js"></script> + <script src="../../../src/event.js"></script> + <script src="../../../src/css.js"></script> + <script src="../../../src/offset.js"></script> + </head> + <body> + <p> Some foo text </p> + <div id="elem"></div> + </body> +</html> |