本文整理匯總了TypeScript中@ephox/mcagar.LegacyUnit.deepEqual方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript LegacyUnit.deepEqual方法的具體用法?TypeScript LegacyUnit.deepEqual怎麽用?TypeScript LegacyUnit.deepEqual使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類@ephox/mcagar.LegacyUnit
的用法示例。
在下文中一共展示了LegacyUnit.deepEqual方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: function
suite.test('Replace characters by array', function (editor) {
editor.settings.charmap = [
[65, 'Latin A'],
[66, 'Latin B']
];
LegacyUnit.deepEqual(editor.plugins.charmap.getCharMap(), [
[65, 'Latin A'],
[66, 'Latin B']
]);
});
示例2: function
suite.test('Parse element', function () {
let parser, root;
parser = DomParser({}, schema);
root = parser.parse('<B title="title" class="class">test</B>');
LegacyUnit.equal(serializer.serialize(root), '<b class="class" title="title">test</b>', 'Inline element');
LegacyUnit.equal(root.firstChild.type, 1, 'Element type');
LegacyUnit.equal(root.firstChild.name, 'b', 'Element name');
LegacyUnit.deepEqual(
root.firstChild.attributes, [{ name: 'title', value: 'title' },
{ name: 'class', value: 'class' }],
'Element attributes'
);
LegacyUnit.deepEqual(countNodes(root), { 'body': 1, 'b': 1, '#text': 1 }, 'Element attributes (count)');
parser = DomParser({}, schema);
root = parser.parse(' \t\r\n <SCRIPT> \t\r\n a < b > \t\r\n </S' + 'CRIPT> \t\r\n ');
LegacyUnit.equal(serializer.serialize(root), '<script> \t\r\n a < b > \t\r\n </s' + 'cript>', 'Retain code inside SCRIPT');
LegacyUnit.deepEqual(countNodes(root), { 'body': 1, 'script': 1, '#text': 1 }, 'Retain code inside SCRIPT (count)');
});
示例3: function
suite.test('Parse (validate)', function () {
let counter, parser;
counter = createCounter(writer);
counter.validate = true;
parser = SaxParser(counter, schema);
writer.reset();
parser.parse('<invalid1>123<invalid2 />456<span title="title" invalid3="value">789</span>012</invalid1>');
LegacyUnit.equal(writer.getContent(), '123456<span title="title">789</span>012', 'Parse invalid elements and attributes.');
LegacyUnit.deepEqual(counter.counts, { start: 1, end: 1, text: 4 }, 'Parse invalid elements and attributes counts.');
});
示例4: function
suite.test('createFromEditor forced_root_block: false', function (editor) {
editor.getBody().innerHTML = '<strong>a</strong> <span>b</span>';
LegacyUnit.deepEqual(Levels.createFromEditor(editor), {
beforeBookmark: null,
bookmark: null,
content: '<strong>a</strong> <span>b</span>',
fragments: null,
type: 'complete'
});
});
示例5: function
suite.test('getWhiteSpaceElements', function () {
let schema;
schema = Schema();
LegacyUnit.deepEqual(schema.getWhiteSpaceElements(), {
IFRAME: {}, NOSCRIPT: {}, OBJECT: {}, PRE: {}, CODE: {},
SCRIPT: {}, STYLE: {}, TEXTAREA: {}, VIDEO: {}, AUDIO: {},
iframe: {}, noscript: {}, object: {}, pre: {}, code: {},
script: {}, style: {}, textarea: {}, video: {}, audio: {}
});
});