Add support for the contenteditable attribute

1.7/enhancement_8685
timmywil 2011-05-05 12:52:04 -04:00
parent 5097e6d1c6
commit cccf9ad91d
2 changed files with 8 additions and 3 deletions

View File

@ -414,7 +414,8 @@ jQuery.extend({
rowspan: "rowSpan",
colspan: "colSpan",
usemap: "useMap",
frameborder: "frameBorder"
frameborder: "frameBorder",
contenteditable: "contentEditable"
},
prop: function( elem, name, value ) {

View File

@ -22,7 +22,8 @@ test("jQuery.attrFix/jQuery.propFix integrity test", function() {
rowspan: "rowSpan",
colspan: "colSpan",
usemap: "useMap",
frameborder: "frameBorder"
frameborder: "frameBorder",
contenteditable: "contentEditable"
},
propsShouldBe;
@ -143,7 +144,7 @@ test("attr(Hash)", function() {
});
test("attr(String, Object)", function() {
expect(56);
expect(57);
var div = jQuery("div").attr("foo", "bar"),
fail = false;
@ -215,6 +216,9 @@ test("attr(String, Object)", function() {
equals( $text.attr("aria-disabled", false).attr("aria-disabled"), "false", "Setting aria attributes are not affected by boolean settings");
$text.removeData("something").removeData("another").removeAttr("aria-disabled");
jQuery("#foo").attr("contenteditable", true);
equals( jQuery("#foo").attr("contenteditable"), "true", "Enumerated attributes are set properly" );
var attributeNode = document.createAttribute("irrelevant"),
commentNode = document.createComment("some comment"),
textNode = document.createTextNode("some text");