No ticket: Fix XHTML regression. Close gh-1375.

This commit is contained in:
Anthony Ryan 2013-09-20 06:00:24 -04:00 committed by Richard Gibson
parent 2aa2957d21
commit 2d4c0d5f37

View File

@ -8,7 +8,7 @@ define([
div = fragment.appendChild( document.createElement( "div" ) ); div = fragment.appendChild( document.createElement( "div" ) );
// #11217 - WebKit loses check when the name is after the checked attribute // #11217 - WebKit loses check when the name is after the checked attribute
div.innerHTML = "<input type='radio' checked name='t'/>"; div.innerHTML = "<input type='radio' checked='checked' name='t'/>";
// Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3 // Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3
// old WebKit doesn't clone checked state correctly in fragments // old WebKit doesn't clone checked state correctly in fragments