Update tests to use Polyglot profile of HTML

This commit is contained in:
Austin Wright
2015-01-12 18:15:20 -07:00
parent e913e85e1a
commit 8e714f9898
@@ -78,12 +78,12 @@ describe('DOMPropertyOperations', function() {
expect(DOMPropertyOperations.createMarkupForProperty(
'checked',
'simple'
)).toBe('checked');
)).toBe('checked=""');
expect(DOMPropertyOperations.createMarkupForProperty(
'checked',
true
)).toBe('checked');
)).toBe('checked=""');
expect(DOMPropertyOperations.createMarkupForProperty(
'checked',
@@ -100,7 +100,7 @@ describe('DOMPropertyOperations', function() {
expect(DOMPropertyOperations.createMarkupForProperty(
'download',
true
)).toBe('download');
)).toBe('download=""');
expect(DOMPropertyOperations.createMarkupForProperty(
'download',