mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Merge branch 'support_6897' of https://github.com/rwldrn/jquery into rwldrn-support_6897
This commit is contained in:
commit
b67154fd10
@ -3,6 +3,31 @@ module("attributes");
|
||||
var bareObj = function(value) { return value; };
|
||||
var functionReturningObj = function(value) { return (function() { return value; }); };
|
||||
|
||||
test("jQuery.props: itegrity test", function() {
|
||||
|
||||
expect(1);
|
||||
|
||||
// This must be maintained and equal jQuery.props
|
||||
// Ensure that accidental or erroneous property
|
||||
// overwrites don't occur
|
||||
// This is simply for better code coverage and future proofing.
|
||||
var propsShouldBe = {
|
||||
"for": "htmlFor",
|
||||
"class": "className",
|
||||
readonly: "readOnly",
|
||||
maxlength: "maxLength",
|
||||
cellspacing: "cellSpacing",
|
||||
rowspan: "rowSpan",
|
||||
colspan: "colSpan",
|
||||
tabindex: "tabIndex",
|
||||
usemap: "useMap",
|
||||
frameborder: "frameBorder"
|
||||
};
|
||||
|
||||
same(propsShouldBe, jQuery.props, "jQuery.props passes integrity check");
|
||||
|
||||
});
|
||||
|
||||
test("attr(String)", function() {
|
||||
expect(37);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user