});
testIframe("offset/fixed", "fixed", function( $ ) {
+ // IE is collapsing the top margin of 1px; detect and adjust accordingly
+ var ie = $("#fixed-1").position().top === 2;
+
expect(34);
var tests = [
- { "id": "#fixed-1", "offsetTop": 1001, "offsetLeft": 1001, "positionTop": 0, "positionLeft": 0 },
- { "id": "#fixed-2", "offsetTop": 1021, "offsetLeft": 1021, "positionTop": 20, "positionLeft": 20 }
+ {
+ "id": "#fixed-1",
+ "offsetTop": 1001,
+ "offsetLeft": 1001,
+ "positionTop": ie ? 2 : 0,
+ "positionLeft": ie ? 2 : 0
+ },
+ {
+ "id": "#fixed-2",
+ "offsetTop": 1021,
+ "offsetLeft": 1021,
+ "positionTop": ie ? 22 : 20,
+ "positionLeft": ie ? 22 : 20
+ }
];
jQuery.each( tests, function() {
// need to have same number of assertions
ok( true, "Fixed position is not supported" );
ok( true, "Fixed position is not supported" );
+ ok( true, "Fixed position is not supported" );
+ ok( true, "Fixed position is not supported" );
}
});