Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Oops, that test file for bug #8316 was needed - was also missing an i…
…nclude and was causing errors.
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |