Fix the HTMLUtils unit test failure by correcting the offset.

This commit is contained in:
RaymondLim 2012-08-27 14:44:11 -07:00
Родитель fbe7cf652d
Коммит bfadab9b6c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -163,7 +163,7 @@ define(function (require, exports, module) {
[ '</body>', '</html>']);
var tag = HTMLUtils.getTagInfo(myEditor, pos);
expect(tag).toEqual(HTMLUtils.createTagInfo(HTMLUtils.ATTR_VALUE, 0, "p", "class", "foo", true, '"', true));
expect(tag).toEqual(HTMLUtils.createTagInfo(HTMLUtils.ATTR_VALUE, -1, "p", "class", "foo", true, '"', true));
});
it("should find the tagname as it's typed", function () {