本文整理汇总了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: {}
});
});