Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / script-tests / toggle-style-3.js
blob39849e680bbce59205dde70012f16636c9a6b9a4
1 description("Test to make sure we remove span tags with no attributes if we removed the last attribute.")
3 var testContainer = document.createElement("div");
4 testContainer.contentEditable = true;
5 document.body.appendChild(testContainer);
7 function testSingleToggle(toggleCommand, initialContents, expectedContents)
9     testContainer.innerHTML = initialContents;
10     window.getSelection().selectAllChildren(testContainer);
11     document.execCommand(toggleCommand, false, null);
12     if (testContainer.innerHTML === expectedContents) {
13         testPassed("one " + toggleCommand + " command converted " + initialContents + " to " + expectedContents);
14     } else {
15         testFailed("one " + toggleCommand + " command converted " + initialContents + " to " + testContainer.innerHTML + ", expected " + expectedContents);
16     }
19 testSingleToggle("bold", 'hello<b id="test">world</b>', '<b>hello<span id="test">world</span></b>');
20 testSingleToggle("bold", 'hello<b><i>world</i></b>', '<b>hello<i>world</i></b>');
21 testSingleToggle("italic", 'hello <i>world</i> <b>webkit</b>', '<i>hello world <b>webkit</b></i>');
22 testSingleToggle("italic", 'hello <i>world</i> webkit', '<i>hello world webkit</i>');
24 document.body.removeChild(testContainer);
26 var successfullyParsed = true;