How to use getEffectiveCommandValue method in wpt

Best JavaScript code snippet using wpt

Command.ts

Source:Command.ts Github

copy

Full Screen

...252 }253 return null;254 }255 // 获得有效的命令值256 function getEffectiveCommandValue(node, command) {257 // 如果 node 不是 element 并且父节点也不是258 if (node.nodeType != Node.ELEMENT_NODE259 && (!node.parentNode || node.parentNode.nodeType != Node.ELEMENT_NODE)) {260 return null;261 }262 // 获得生效的父节点的命令值263 if (node.nodeType != Node.ELEMENT_NODE) {264 return getEffectiveCommandValue(node.parentNode, command);265 }266 // 如果命令是 command 是 "createlink" or "unlink"267 if (command == "createlink" || command == "unlink") {268 // 获得有效的 href 属性的 node269 while (node270 && (!utils.isHtmlElement(node)271 || node.tagName != "A"272 || !node.hasAttribute("href"))) {273 node = node.parentNode;274 }275 if (!node) {276 return null;277 }278 return node.getAttribute("href");279 }280 // 如果 command 是 "backColor" or "hiliteColor"281 if (command == "backcolor"282 || command == "hilitecolor") {283 // 获得有效的 backgroundColor 元素284 while ((getComputedStyle(node).backgroundColor == "rgba(0, 0, 0, 0)"285 || getComputedStyle(node).backgroundColor === ""286 || getComputedStyle(node).backgroundColor == "transparent")287 && node.parentNode288 && node.parentNode.nodeType == Node.ELEMENT_NODE) {289 node = node.parentNode;290 }291 return getComputedStyle(node).backgroundColor;292 }293 // 如果命令是 is "subscript" or "superscript"294 if (command == "subscript" || command == "superscript") {295 // 初始化 "subscript" or "superscript" 都为 false296 let affectedBySubscript = false;297 let affectedBySuperscript = false;298 // 如果 node 是 inline 类型299 while (utils.isInlineNode(node)) {300 let verticalAlign = getComputedStyle(node).verticalAlign;301 // 如果 node 是 sub, 设置 affectedBySubscript = true 如果是sub,设置 affectedBySuperscript = true;302 if (utils.isHtmlElement(node, "sub")) {303 affectedBySubscript = true;304 } else if (utils.isHtmlElement(node, "sup")) {305 affectedBySuperscript = true;306 }307 node = node.parentNode;308 }309 // 如果 affectedBySubscript affectedBySuperscript 都为 true 返回 mixed310 if (affectedBySubscript && affectedBySuperscript) {311 return "mixed";312 }313 // 如果 affectedBySubscript 为 true 返回 subscript314 if (affectedBySubscript) {315 return "subscript";316 }317 // 如果 affectedBySuperscript 为 true 返回 superscript318 if (affectedBySuperscript) {319 return "superscript";320 }321 return null;322 }323 // 如果 command 是 "strikethrough", 并且设置了 "text-decoration" 属性,并且包含 line-through 就立即返回,如果没有,返回 null324 if (command == "strikethrough") {325 do {326 if (getComputedStyle(node).textDecoration.indexOf("line-through") != -1) {327 return "line-through";328 }329 node = node.parentNode;330 } while (node && node.nodeType == Node.ELEMENT_NODE);331 return null;332 }333 // 如果 command 是 "strikethrough", 并且设置了 "text-decoration" 属性,并且包含 underline 就立即返回,如果没有,返回 null334 if (command == "underline") {335 do {336 if (getComputedStyle(node).textDecoration.indexOf("underline") != -1) {337 return "underline";338 }339 node = node.parentNode;340 } while (node && node.nodeType == Node.ELEMENT_NODE);341 return null;342 }343 if (!("relevantCssProperty" in commands.get(command))) {344 throw "Bug: no relevantCssProperty for " + command + " in getEffectiveCommandValue";345 }346 // 返回相关的 CSS 属性的值347 return getComputedStyle(node)[commands.get(command).relevantCssProperty];348 }349 // 清除元素设定的样式350 function clearValue(element, command) {351 // 如果 element 不可编辑,返回 []352 if (!utils.isEditable(element)) {353 return [];354 }355 // 如果 element 是特殊的命令,并且验证结果为空,返回 []356 if (getSpecifiedCommandValue(element, command) === null) {357 return [];358 }359 // 是一个简单的可以被修改的 element360 if (utils.isSimpleModifiableElement(element)) {361 // 获得子节点362 let children = Array.prototype.slice.call(element.childNodes);363 // 对于 children 中的每个孩子,在 element 之前将 child 插入元素的父元素,立即保留范围。364 for (let i = 0; i < children.length; i++) {365 selection.movePreservingRanges(children[i], element.parentNode, utils.getNodeIndex(element));366 }367 element.parentNode.removeChild(element);368 return children;369 }370 // 如果命令是 "strikethrough" 删除其 style 属性中的样式371 if (command == "strikethrough"372 && element.style.textDecoration.indexOf("line-through") != -1) {373 if (element.style.textDecoration == "line-through") {374 element.style.textDecoration = "";375 } else {376 element.style.textDecoration = element.style.textDecoration.replace("line-through", "");377 }378 if (element.getAttribute("style") == "") {379 element.removeAttribute("style");380 }381 }382 // 如果是 undeline 删除其 style 等属性中的样式383 if (command == "underline"384 && element.style.textDecoration.indexOf("underline") != -1) {385 if (element.style.textDecoration == "underline") {386 element.style.textDecoration = "";387 } else {388 element.style.textDecoration = element.style.textDecoration.replace("underline", "");389 }390 if (element.getAttribute("style") == "") {391 element.removeAttribute("style");392 }393 }394 // 如果是其他的类似的 CSS 属性,直接移出 style 属性395 if (commands.get(command).relevantCssProperty !== null) {396 element.style[commands.get(command).relevantCssProperty] = '';397 if (element.getAttribute("style") == "") {398 element.removeAttribute("style");399 }400 }401 // 如果是 font 标签402 if (utils.isHtmlNamespace(element.namespaceURI) && element.tagName == "FONT") {403 // 如果设置了 foreColor 移出设定值404 if (command == "forecolor") {405 element.removeAttribute("color");406 }407 // 如果设置了 fontname 移出设定值408 if (command == "fontname") {409 element.removeAttribute("face");410 }411 // 如果设置了 fontSize 移出设定值412 if (command == "fontsize") {413 element.removeAttribute("size");414 }415 }416 // 如果是 a 标签,并且 command 是 "createLink" or "unlink", 取消 href 属性417 if (utils.isHtmlElement(element, "A")418 && (command == "createlink" || command == "unlink")) {419 element.removeAttribute("href");420 }421 // 再次校验特殊命令,并且验证结果为空,返回 []422 if (getSpecifiedCommandValue(element, command) === null) {423 return [];424 }425 // 返回由 span 包裹的节点426 return [selection.setTagName(element, "span")];427 }428 // 是否是两个相同的变量429 // 两个量都是命令的等效值,如果两个均为空430 // 或者都是字符串并且相等,并且命令没有定义任何 equivalentValues,431 // 或者两个都是字符串,并且命令定义了 equivalentValues 并且它们与定义匹配。432 function areEquivalentValues(command, val1, val2) {433 if (val1 === null && val2 === null) {434 return true;435 }436 if (typeof val1 == "string"437 && typeof val2 == "string"438 && val1 == val2439 && !("equivalentValues" in commands.get(command))) {440 return true;441 }442 if (typeof val1 == "string"443 && typeof val2 == "string"444 && "equivalentValues" in commands.get(command)445 && commands.get(command).equivalentValues(val1, val2)) {446 return true;447 }448 return false;449 }450 // 松散比较两个值451 function areLooselyEquivalentValues(command, val1, val2) {452 const sizeMap = new Map();453 if (areEquivalentValues(command, val1, val2)) {454 return true;455 }456 if (command != "fontsize"457 || typeof val1 != "string"458 || typeof val2 != "string") {459 return false;460 }461 let font = document.createElement("font");462 document.body.appendChild(font);463 ["x-small", "small", "medium", "large", "x-large", "xx-large", "xxx-large"].forEach(function(keyword) {464 font.size = utils.cssSizeToLegacy(keyword);465 sizeMap.set(keyword, getComputedStyle(font).fontSize)466 });467 document.body.removeChild(font);468 return val1 === sizeMap.get(val2)469 || val2 === sizeMap.get(val1);470 }471 // 强制设置值472 function forceValue(node, command, newValue) {473 // "If node's parent is null, abort this algorithm."474 // 如果节点的父级不是元素,则中止该算法。475 if (!node.parentNode) {476 return;477 }478 // "If new value is null, abort this algorithm."479 if (newValue === null) {480 return;481 }482 // "If node is an allowed child of "span":"483 if (utils.isAllowedChild(node, "span")) {484 // "Reorder modifiable descendants of node's previousSibling."485 reorderModifiableDescendants(node.previousSibling, command, newValue);486 // "Reorder modifiable descendants of node's nextSibling."487 reorderModifiableDescendants(node.nextSibling, command, newValue);488 // "Wrap the one-node list consisting of node, with sibling criteria489 // returning true for a simple modifiable element whose specified490 // command value is equivalent to new value and whose effective command491 // value is loosely equivalent to new value and false otherwise, and492 // with new parent instructions returning null."493 wrap([node],494 function(node) {495 return utils.isSimpleModifiableElement(node)496 && areEquivalentValues(command, getSpecifiedCommandValue(node, command), newValue)497 && areLooselyEquivalentValues(command, getEffectiveCommandValue(node, command), newValue);498 },499 function() { return null }500 );501 }502 // "If node is invisible, abort this algorithm."503 if (utils.isInvisible(node)) {504 return;505 }506 // "If the effective command value of command is loosely equivalent to new507 // value on node, abort this algorithm."508 if (areLooselyEquivalentValues(command, getEffectiveCommandValue(node, command), newValue)) {509 return;510 }511 // "If node is not an allowed child of "span":"512 if (!utils.isAllowedChild(node, "span")) {513 // "Let children be all children of node, omitting any that are514 // Elements whose specified command value for command is neither null515 // nor equivalent to new value."516 let children = [];517 for (let i = 0; i < node.childNodes.length; i++) {518 if (node.childNodes[i].nodeType == Node.ELEMENT_NODE) {519 let specifiedValue = getSpecifiedCommandValue(node.childNodes[i], command);520 if (specifiedValue !== null521 && !areEquivalentValues(command, newValue, specifiedValue)) {522 continue;523 }524 }525 children.push(node.childNodes[i]);526 }527 // "Force the value of each Node in children, with command and new528 // value as in this invocation of the algorithm."529 for (let i = 0; i < children.length; i++) {530 forceValue(children[i], command, newValue);531 }532 // "Abort this algorithm."533 return;534 }535 // "If the effective command value of command is loosely equivalent to new536 // value on node, abort this algorithm."537 if (areLooselyEquivalentValues(command, getEffectiveCommandValue(node, command), newValue)) {538 return;539 }540 // "Let new parent be null."541 let newParent = null;542 // "If the CSS styling flag is false:"543 if (!cssStylingFlag) {544 // "If command is "bold" and new value is "bold", let new parent be the545 // result of calling createElement("b") on the ownerDocument of node."546 if (command == "bold" && (newValue == "bold" || newValue == "700")) {547 newParent = node.ownerDocument.createElement("b");548 }549 // "If command is "italic" and new value is "italic", let new parent be550 // the result of calling createElement("i") on the ownerDocument of551 // node."552 if (command == "italic" && newValue == "italic") {553 newParent = node.ownerDocument.createElement("i");554 }555 // "If command is "strikethrough" and new value is "line-through", let556 // new parent be the result of calling createElement("s") on the557 // ownerDocument of node."558 if (command == "strikethrough" && newValue == "line-through") {559 newParent = node.ownerDocument.createElement("s");560 }561 // "If command is "underline" and new value is "underline", let new562 // parent be the result of calling createElement("u") on the563 // ownerDocument of node."564 if (command == "underline" && newValue == "underline") {565 newParent = node.ownerDocument.createElement("u");566 }567 // "If command is "foreColor", and new value is fully opaque with red,568 // green, and blue components in the range 0 to 255:"569 if (command == "forecolor" && utils.parseSimpleColor(newValue)) {570 // "Let new parent be the result of calling createElement("font")571 // on the ownerDocument of node."572 newParent = node.ownerDocument.createElement("font");573 // "Set the color attribute of new parent to the result of applying574 // the rules for serializing simple color values to new value575 // (interpreted as a simple color)."576 newParent.setAttribute("color", utils.parseSimpleColor(newValue));577 }578 // "If command is "fontName", let new parent be the result of calling579 // createElement("font") on the ownerDocument of node, then set the580 // face attribute of new parent to new value."581 if (command == "fontname") {582 newParent = node.ownerDocument.createElement("font");583 newParent.face = newValue;584 }585 }586 // "If command is "createLink" or "unlink":"587 if (command == "createlink" || command == "unlink") {588 // "Let new parent be the result of calling createElement("a") on the589 // ownerDocument of node."590 newParent = node.ownerDocument.createElement("a");591 // "Set the href attribute of new parent to new value."592 newParent.setAttribute("href", newValue);593 // "Let ancestor be node's parent."594 let ancestor = node.parentNode;595 // "While ancestor is not null:"596 while (ancestor) {597 // "If ancestor is an a, set the tag name of ancestor to "span",598 // and let ancestor be the result."599 if (utils.isHtmlElement(ancestor, "A")) {600 ancestor = selection.setTagName(ancestor, "span");601 }602 // "Set ancestor to its parent."603 ancestor = ancestor.parentNode;604 }605 }606 // "If command is "fontSize"; and new value is one of "x-small", "small",607 // "medium", "large", "x-large", "xx-large", or "xxx-large"; and either the608 // CSS styling flag is false, or new value is "xxx-large": let new parent609 // be the result of calling createElement("font") on the ownerDocument of610 // node, then set the size attribute of new parent to the number from the611 // following table based on new value: [table omitted]"612 if (command == "fontsize"613 && ["x-small", "small", "medium", "large", "x-large", "xx-large", "xxx-large"].indexOf(newValue) != -1614 && (!cssStylingFlag || newValue == "xxx-large")) {615 newParent = node.ownerDocument.createElement("font");616 newParent.size = utils.cssSizeToLegacy(newValue);617 }618 // "If command is "subscript" or "superscript" and new value is619 // "subscript", let new parent be the result of calling620 // createElement("sub") on the ownerDocument of node."621 if ((command == "subscript" || command == "superscript")622 && newValue == "subscript") {623 newParent = node.ownerDocument.createElement("sub");624 }625 // "If command is "subscript" or "superscript" and new value is626 // "superscript", let new parent be the result of calling627 // createElement("sup") on the ownerDocument of node."628 if ((command == "subscript" || command == "superscript")629 && newValue == "superscript") {630 newParent = node.ownerDocument.createElement("sup");631 }632 // "If new parent is null, let new parent be the result of calling633 // createElement("span") on the ownerDocument of node."634 if (!newParent) {635 newParent = node.ownerDocument.createElement("span");636 }637 // "Insert new parent in node's parent before node."638 node.parentNode.insertBefore(newParent, node);639 // "If the effective command value of command for new parent is not loosely640 // equivalent to new value, and the relevant CSS property for command is641 // not null, set that CSS property of new parent to new value (if the new642 // value would be valid)."643 let property = commands.get(command).relevantCssProperty;644 if (property !== null645 && !areLooselyEquivalentValues(command, getEffectiveCommandValue(newParent, command), newValue)) {646 newParent.style[property] = newValue;647 }648 // "If command is "strikethrough", and new value is "line-through", and the649 // effective command value of "strikethrough" for new parent is not650 // "line-through", set the "text-decoration" property of new parent to651 // "line-through"."652 if (command == "strikethrough"653 && newValue == "line-through"654 && getEffectiveCommandValue(newParent, "strikethrough") != "line-through") {655 newParent.style.textDecoration = "line-through";656 }657 // "If command is "underline", and new value is "underline", and the658 // effective command value of "underline" for new parent is not659 // "underline", set the "text-decoration" property of new parent to660 // "underline"."661 if (command == "underline"662 && newValue == "underline"663 && getEffectiveCommandValue(newParent, "underline") != "underline") {664 newParent.style.textDecoration = "underline";665 }666 // "Append node to new parent as its last child, preserving ranges."667 selection.movePreservingRanges(node, newParent, newParent.childNodes.length);668 // "If node is an Element and the effective command value of command for669 // node is not loosely equivalent to new value:"670 if (node.nodeType == Node.ELEMENT_NODE671 && !areEquivalentValues(command, getEffectiveCommandValue(node, command), newValue)) {672 // "Insert node into the parent of new parent before new parent,673 // preserving ranges."674 selection.movePreservingRanges(node, newParent.parentNode, utils.getNodeIndex(newParent));675 // "Remove new parent from its parent."676 newParent.parentNode.removeChild(newParent);677 // "Let children be all children of node, omitting any that are678 // Elements whose specified command value for command is neither null679 // nor equivalent to new value."680 let children = [];681 for (let i = 0; i < node.childNodes.length; i++) {682 if (node.childNodes[i].nodeType == Node.ELEMENT_NODE) {683 let specifiedValue = getSpecifiedCommandValue(node.childNodes[i], command);684 if (specifiedValue !== null685 && !areEquivalentValues(command, newValue, specifiedValue)) {686 continue;687 }688 }689 children.push(node.childNodes[i]);690 }691 // "Force the value of each Node in children, with command and new692 // value as in this invocation of the algorithm."693 for (let i = 0; i < children.length; i++) {694 forceValue(children[i], command, newValue);695 }696 }697 }698 // 重新排列可修改的后代699 function reorderModifiableDescendants(node, command, newValue) {700 // "Let candidate equal node."701 let candidate = node;702 // "While candidate is a modifiable element, and candidate has exactly one703 // child, and that child is also a modifiable element, and candidate is not704 // a simple modifiable element or candidate's specified command value for705 // command is not equivalent to new value, set candidate to its child."706 while (utils.isModifiableElement(candidate)707 && candidate.childNodes.length == 1708 && utils.isModifiableElement(candidate.firstChild)709 && (!utils.isSimpleModifiableElement(candidate)710 || !areEquivalentValues(command, getSpecifiedCommandValue(candidate, command), newValue))) {711 candidate = candidate.firstChild;712 }713 // "If candidate is node, or is not a simple modifiable element, or its714 // specified command value is not equivalent to new value, or its effective715 // command value is not loosely equivalent to new value, abort these716 // steps."717 if (candidate == node718 || !utils.isSimpleModifiableElement(candidate)719 || !areEquivalentValues(command, getSpecifiedCommandValue(candidate, command), newValue)720 || !areLooselyEquivalentValues(command, getEffectiveCommandValue(candidate, command), newValue)) {721 return;722 }723 // "While candidate has children, insert the first child of candidate into724 // candidate's parent immediately before candidate, preserving ranges."725 while (candidate.hasChildNodes()) {726 selection.movePreservingRanges(candidate.firstChild, candidate.parentNode, utils.getNodeIndex(candidate));727 }728 // "Insert candidate into node's parent immediately after node."729 node.parentNode.insertBefore(candidate, node.nextSibling);730 // "Append the node as the last child of candidate, preserving ranges."731 selection.movePreservingRanges(node, candidate, -1);732 }733 function wrap(nodeList, siblingCriteria, newParentInstructions) {734 // "If not provided, sibling criteria returns false and new parent735 // instructions returns null."736 //“如果未提供,则同级条件返回false和新的父级737 //指令传回null。”738 if (typeof siblingCriteria == "undefined") {739 siblingCriteria = function() { return false };740 }741 if (typeof newParentInstructions == "undefined") {742 newParentInstructions = function() { return null };743 }744 // "If every member of node list is invisible, and none is a br, return745 // null and abort these steps."746 if (nodeList.every(utils.isInvisible)747 && !nodeList.some(function(node) { return utils.isHtmlElement(node, "br") })) {748 return null;749 }750 // "If node list's first member's parent is null, return null and abort751 // these steps."752 if (!nodeList[0].parentNode) {753 return null;754 }755 // "If node list's last member is an inline node that's not a br, and node756 // list's last member's nextSibling is a br, append that br to node list."757 if (utils.isInlineNode(nodeList[nodeList.length - 1])758 && !utils.isHtmlElement(nodeList[nodeList.length - 1], "br")759 && utils.isHtmlElement(nodeList[nodeList.length - 1].nextSibling, "br")) {760 nodeList.push(nodeList[nodeList.length - 1].nextSibling);761 }762 // "While node list's first member's previousSibling is invisible, prepend763 // it to node list."764 while (utils.isInvisible(nodeList[0].previousSibling)) {765 nodeList.unshift(nodeList[0].previousSibling);766 }767 // "While node list's last member's nextSibling is invisible, append it to768 // node list."769 while (utils.isInvisible(nodeList[nodeList.length - 1].nextSibling)) {770 nodeList.push(nodeList[nodeList.length - 1].nextSibling);771 }772 // "If the previousSibling of the first member of node list is editable and773 // running sibling criteria on it returns true, let new parent be the774 // previousSibling of the first member of node list."775 let newParent;776 if (utils.isEditable(nodeList[0].previousSibling)777 && siblingCriteria(nodeList[0].previousSibling)) {778 newParent = nodeList[0].previousSibling;779 // "Otherwise, if the nextSibling of the last member of node list is780 // editable and running sibling criteria on it returns true, let new parent781 // be the nextSibling of the last member of node list."782 } else if (utils.isEditable(nodeList[nodeList.length - 1].nextSibling)783 && siblingCriteria(nodeList[nodeList.length - 1].nextSibling)) {784 newParent = nodeList[nodeList.length - 1].nextSibling;785 // "Otherwise, run new parent instructions, and let new parent be the786 // result."787 } else {788 newParent = newParentInstructions();789 }790 // "If new parent is null, abort these steps and return null."791 if (!newParent) {792 return null;793 }794 // "If new parent's parent is null:"795 if (!newParent.parentNode) {796 // "Insert new parent into the parent of the first member of node list797 // immediately before the first member of node list."798 nodeList[0].parentNode.insertBefore(newParent, nodeList[0]);799 // "If any range has a boundary point with node equal to the parent of800 // new parent and offset equal to the index of new parent, add one to801 // that boundary point's offset."802 //803 // Only try to fix the global range.804 if (selection.range.startContainer == newParent.parentNode805 && selection.range.startOffset == utils.getNodeIndex(newParent)) {806 selection.range.setStart(selection.range.startContainer, selection.range.startOffset + 1);807 }808 if (selection.range.endContainer == newParent.parentNode809 && selection.range.endOffset == utils.getNodeIndex(newParent)) {810 selection.range.setEnd(selection.range.endContainer, selection.range.endOffset + 1);811 }812 }813 // "Let original parent be the parent of the first member of node list."814 let originalParent = nodeList[0].parentNode;815 // "If new parent is before the first member of node list in tree order:"816 if (utils.isBefore(newParent, nodeList[0])) {817 // "If new parent is not an inline node, but the last visible child of818 // new parent and the first visible member of node list are both inline819 // nodes, and the last child of new parent is not a br, call820 // createElement("br") on the ownerDocument of new parent and append821 // the result as the last child of new parent."822 if (!utils.isInlineNode(newParent)823 && utils.isInlineNode([].filter.call(newParent.childNodes, utils.isVisible).slice(-1)[0])824 && utils.isInlineNode(nodeList.filter(utils.isVisible)[0])825 && !utils.isHtmlElement(newParent.lastChild, "BR")) {826 newParent.appendChild(newParent.ownerDocument.createElement("br"));827 }828 // "For each node in node list, append node as the last child of new829 // parent, preserving ranges."830 for (let i = 0; i < nodeList.length; i++) {831 selection.movePreservingRanges(nodeList[i], newParent, -1);832 }833 // "Otherwise:"834 } else {835 // "If new parent is not an inline node, but the first visible child of836 // new parent and the last visible member of node list are both inline837 // nodes, and the last member of node list is not a br, call838 // createElement("br") on the ownerDocument of new parent and insert839 // the result as the first child of new parent."840 if (!utils.isInlineNode(newParent)841 && utils.isInlineNode([].filter.call(newParent.childNodes, utils.isVisible)[0])842 && utils.isInlineNode(nodeList.filter(utils.isVisible).slice(-1)[0])843 && !utils.isHtmlElement(nodeList[nodeList.length - 1], "BR")) {844 newParent.insertBefore(newParent.ownerDocument.createElement("br"), newParent.firstChild);845 }846 // "For each node in node list, in reverse order, insert node as the847 // first child of new parent, preserving ranges."848 for (let i = nodeList.length - 1; i >= 0; i--) {849 selection.movePreservingRanges(nodeList[i], newParent, 0);850 }851 }852 // "If original parent is editable and has no children, remove it from its853 // parent."854 if (utils.isEditable(originalParent) && !originalParent.hasChildNodes()) {855 originalParent.parentNode.removeChild(originalParent);856 }857 // "If new parent's nextSibling is editable and running sibling criteria on858 // it returns true:"859 if (utils.isEditable(newParent.nextSibling)860 && siblingCriteria(newParent.nextSibling)) {861 // "If new parent is not an inline node, but new parent's last child862 // and new parent's nextSibling's first child are both inline nodes,863 // and new parent's last child is not a br, call createElement("br") on864 // the ownerDocument of new parent and append the result as the last865 // child of new parent."866 if (!utils.isInlineNode(newParent)867 && utils.isInlineNode(newParent.lastChild)868 && utils.isInlineNode(newParent.nextSibling.firstChild)869 && !utils.isHtmlElement(newParent.lastChild, "BR")) {870 newParent.appendChild(newParent.ownerDocument.createElement("br"));871 }872 // "While new parent's nextSibling has children, append its first child873 // as the last child of new parent, preserving ranges."874 while (newParent.nextSibling.hasChildNodes()) {875 selection.movePreservingRanges(newParent.nextSibling.firstChild, newParent, -1);876 }877 // "Remove new parent's nextSibling from its parent."878 newParent.parentNode.removeChild(newParent.nextSibling);879 }880 // "Remove extraneous line breaks from new parent."881 utils.removeExtraneousLineBreaksFrom(newParent);882 // "Return new parent."883 return newParent;884 }885 // 应用当前结果886 function pushDownValues(node, command, newValue) {887 // 如果节点的父级不是元素,则中止该算法。888 if (!node.parentNode889 || node.parentNode.nodeType != Node.ELEMENT_NODE) {890 return;891 }892 // 如果当前命令有效,并且和旧的元素上的值通过松散匹配相等,就不设置893 if (areLooselyEquivalentValues(command, getEffectiveCommandValue(node, command), newValue)) {894 return;895 }896 // 获得公共祖先897 let currentAncestor = node.parentNode;898 // 初始化 ancestor list 为空899 let ancestorList = [];900 // 递归找到最远的父节点,如果当前新的 command 不等于旧值,则将父节点加入到 ancestorList901 while (utils.isEditable(currentAncestor)902 && currentAncestor.nodeType == Node.ELEMENT_NODE903 && !areLooselyEquivalentValues(command, getEffectiveCommandValue(currentAncestor, command), newValue)) {904 ancestorList.push(currentAncestor);905 currentAncestor = currentAncestor.parentNode;906 }907 // 如果没有待更新至,返回908 if (!ancestorList.length) {909 return;910 }911 // 因为 dom 节点样式都是继承的。所以返回 ancestorList 最后一个元素即最远的祖先节点912 let propagatedValue = getSpecifiedCommandValue(ancestorList[ancestorList.length - 1], command);913 // 如果 propagatedValue 是 null 并且不等于新的值,就终止914 if (propagatedValue === null && propagatedValue != newValue) {915 return;916 }917 // 如果命令的值有效,并且公共的祖先节点松散匹配不等于新的结果,这时新的结果也不是空值,就终止918 if (newValue !== null919 && !areLooselyEquivalentValues(command, getEffectiveCommandValue(ancestorList[ancestorList.length - 1].parentNode, command), newValue)) {920 return;921 }922 // 清空 ancestorList 栈923 while (ancestorList.length) {924 let currentAncestor = ancestorList.pop();925 // 出栈过程中,如果某个节点含有指定的样式,就设置指定的传播值926 if (getSpecifiedCommandValue(currentAncestor, command) !== null) {927 propagatedValue = getSpecifiedCommandValue(currentAncestor, command);928 }929 let children = Array.prototype.slice.call(currentAncestor.childNodes);930 // 如果command的当前祖先的指定命令值不为空,则清除当前祖先的值。931 if (getSpecifiedCommandValue(currentAncestor, command) !== null) {932 clearValue(currentAncestor, command);933 }934 // 处理每个 children935 for (let i = 0; i < children.length; i++) {936 let child = children[i];937 // 如果 chide == node, 跳过当前处理938 if (child == node) {939 continue;940 }941 // 如果 child 是一个 Element,其 command 的指定命令值既不为空也不等同于 propagatedVale,则继续下一个 child。942 if (child.nodeType == Node.ELEMENT_NODE943 && getSpecifiedCommandValue(child, command) !== null944 && !areEquivalentValues(command, propagatedValue, getSpecifiedCommandValue(child, command))) {945 continue;946 }947 // 如果 child == ancestorList[ancestorList.length - 1],跳过948 if (child == ancestorList[ancestorList.length - 1]) {949 continue;950 }951 // 强制使用 child 的值,并且更新 新值等于传播的值。952 forceValue(child, command, propagatedValue);953 }954 }955 }956 function recordCurrentOverrides() {957 // 初始化overrides958 let overrides = [];959 // 优先处理超链接960 if (internalOverride.getValueOverride("createlink") !== undefined) {961 overrides.push(["createlink", internalOverride.getValueOverride("createlink")]);962 }963 // 这些值只有 true 和 false964 const verifyState = ["bold", "italic", "strikethrough", "subscript", "superscript", "underline"]965 verifyState.forEach(function(command) {966 if (internalOverride.getStateOverride(command) !== undefined) {967 overrides.push([command, internalOverride.getStateOverride(command)]);968 }969 });970 // 这些是有值的971 const verifyValue = ["fontname", "fontsize", "forecolor", "hilitecolor"]972 verifyValue.forEach(function(command) {973 if (internalOverride.getValueOverride(command) !== undefined) {974 overrides.push([command, internalOverride.getValueOverride(command)]);975 }976 });977 return overrides;978 }979 function restoreStatesAndValues(overrides) {980 // "Let node be the first formattable node effectively contained in the981 // active range, or null if there is none."982 let node = utils.getAllEffectivelyContainedNodes(selection.getActiveRange())983 .filter(utils.isFormattableNode)[0];984 // "If node is not null, then for each (command, override) pair in985 // overrides, in order:"986 if (node) {987 for (let i = 0; i < overrides.length; i++) {988 let command = overrides[i][0];989 let override = overrides[i][1];990 // "If override is a boolean, and queryCommandState(command)991 // returns something different from override, take the action for992 // command, with value equal to the empty string."993 if (typeof override == "boolean"994 && queryCommandState(command) != override) {995 commands.get(command).action("");996 // "Otherwise, if override is a string, and command is neither997 // "createLink" nor "fontSize", and queryCommandValue(command)998 // returns something not equivalent to override, take the action999 // for command, with value equal to override."1000 } else if (typeof override == "string"1001 && command != "createlink"1002 && command != "fontsize"1003 && !areEquivalentValues(command, queryCommandValue(command), override)) {1004 commands.get(command).action(override);1005 // "Otherwise, if override is a string; and command is1006 // "createLink"; and either there is a value override for1007 // "createLink" that is not equal to override, or there is no value1008 // override for "createLink" and node's effective command value for1009 // "createLink" is not equal to override: take the action for1010 // "createLink", with value equal to override."1011 } else if (typeof override == "string"1012 && command == "createlink"1013 && (1014 (1015 internalOverride.getValueOverride("createlink") !== undefined1016 && internalOverride.getValueOverride("createlink") !== override1017 ) || (1018 internalOverride.getValueOverride("createlink") === undefined1019 && getEffectiveCommandValue(node, "createlink") !== override1020 )1021 )) {1022 commands.get('createlink').action(override);1023 // "Otherwise, if override is a string; and command is "fontSize";1024 // and either there is a value override for "fontSize" that is not1025 // equal to override, or there is no value override for "fontSize"1026 // and node's effective command value for "fontSize" is not loosely1027 // equivalent to override:"1028 } else if (typeof override == "string"1029 && command == "fontsize"1030 && (1031 (1032 internalOverride.getValueOverride("fontsize") !== undefined1033 && internalOverride.getValueOverride("fontsize") !== override1034 ) || (1035 internalOverride.getValueOverride("fontsize") === undefined1036 && !areLooselyEquivalentValues(command, getEffectiveCommandValue(node, "fontsize"), override)1037 )1038 )) {1039 // "Convert override to an integer number of pixels, and set1040 // override to the legacy font size for the result."1041 override = utils.getLegacyFontSize(override);1042 // "Take the action for "fontSize", with value equal to1043 // override."1044 commands.get('fontsize').action(override);1045 // "Otherwise, continue this loop from the beginning."1046 } else {1047 continue;1048 }1049 // "Set node to the first formattable node effectively contained in1050 // the active range, if there is one."1051 node = utils.getAllEffectivelyContainedNodes(selection.getActiveRange())1052 .filter(utils.isFormattableNode)[0]1053 || node;1054 }1055 // "Otherwise, for each (command, override) pair in overrides, in order:"1056 } else {1057 for (let i = 0; i < overrides.length; i++) {1058 let command = overrides[i][0];1059 let override = overrides[i][1];1060 // "If override is a boolean, set the state override for command to1061 // override."1062 if (typeof override == "boolean") {1063 internalOverride.setStateOverride(command, override);1064 }1065 // "If override is a string, set the value override for command to1066 // override."1067 if (typeof override == "string") {1068 internalOverride.setValueOverride(command, override);1069 }1070 }1071 }1072 }1073 function recordCurrentStatesAndValues() {1074 // "Let overrides be a list of (string, string or boolean) ordered pairs,1075 // initially empty."1076 let overrides = [];1077 // "Let node be the first formattable node effectively contained in the1078 // active range, or null if there is none."1079 let node = utils.getAllEffectivelyContainedNodes(selection.getActiveRange())1080 .filter(utils.isFormattableNode)[0];1081 // "If node is null, return overrides."1082 if (!node) {1083 return overrides;1084 }1085 // "Add ("createLink", node's effective command value for "createLink") to1086 // overrides."1087 overrides.push(["createlink", getEffectiveCommandValue(node, "createlink")]);1088 // "For each command in the list "bold", "italic", "strikethrough",1089 // "subscript", "superscript", "underline", in order: if node's effective1090 // command value for command is one of its inline command activated values,1091 // add (command, true) to overrides, and otherwise add (command, false) to1092 // overrides."1093 ["bold", "italic", "strikethrough", "subscript", "superscript",1094 "underline"].forEach(function(command) {1095 if (commands.get(command).inlineCommandActivatedValues1096 .indexOf(getEffectiveCommandValue(node, command)) != -1) {1097 overrides.push([command, true]);1098 } else {1099 overrides.push([command, false]);1100 }1101 });1102 // "For each command in the list "fontName", "foreColor", "hiliteColor", in1103 // order: add (command, command's value) to overrides."1104 ["fontname", "fontsize", "forecolor", "hilitecolor"].forEach(function(command) {1105 overrides.push([command, commands.get(command).value()]);1106 });1107 // "Add ("fontSize", node's effective command value for "fontSize") to1108 // overrides."1109 overrides.push(["fontsize", getEffectiveCommandValue(node, "fontsize")]);1110 // "Return overrides."1111 return overrides;1112 }1113 function setSelectionValue (command, newValue) {1114 // console.log('%ccommand', 'color:red', editor.commands, command, newValue)1115 // 如果选中范围中没有有效包含的格式表节点1116 if (!utils.getAllEffectivelyContainedNodes(selection.getActiveRange())1117 .some(utils.isFormattableNode)) {1118 // 如果 command 具有内联命令激活值,则如果其中包含新值,则将状态替代设置为true,否则将其设置为false。1119 if ("inlineCommandActivatedValues" in commands.get(command)) {1120 internalOverride.setStateOverride(command, commands.get(command).inlineCommandActivatedValues1121 .indexOf(newValue) != -1);1122 }1123 // 如果 command 是 "subscript", 则覆盖 "superscript"1124 if (command == "subscript") {1125 internalOverride.unsetStateOverride("superscript");1126 }1127 // 如果 command 是 "superscript" 则覆盖 "subscript"1128 if (command == "superscript") {1129 internalOverride.unsetStateOverride("subscript");1130 }1131 // 如果新值是 null, 不覆盖1132 if (newValue === null) {1133 internalOverride.unsetValueOverride(command);1134 // 其他情况,如果 command 是 'createLink' 或者特定的值,都替换为新的1135 } else if (command == "createlink" || "value" in commands.get(command)) {1136 internalOverride.setValueOverride(command, newValue);1137 }1138 // 终止此次操作1139 return;1140 }1141 // 如果激活的选区中的起始节点是一个可编辑的文本节点,并且其起始偏移量既不是零也不是其起始节点的长度,1142 // 则在活动范围的起始节点上调用 splitText(),参数等于活动范围的起始偏移量。1143 // 然后设置当前激活的选区的起始节点并且应用设置的值,并且更新其起始偏移为零。1144 const activedRange = selection.getActiveRange()1145 if (utils.isEditable(activedRange.startContainer)1146 && activedRange.startContainer.nodeType == Node.TEXT_NODE1147 && activedRange.startOffset != 01148 && activedRange.startOffset != utils.getNodeLength(activedRange.startContainer)) {1149 // 一些特定浏览器怪异规则1150 let newActiveRange = document.createRange();1151 let newNode;1152 if (activedRange.startContainer == activedRange.endContainer) {1153 let newEndOffset = activedRange.endOffset - activedRange.startOffset;1154 newNode = (<Text>activedRange.startContainer).splitText(activedRange.startOffset);1155 newActiveRange.setEnd(newNode, newEndOffset);1156 activedRange.setEnd(newNode, newEndOffset);1157 } else {1158 newNode = (<Text>activedRange.startContainer).splitText(activedRange.startOffset);1159 }1160 newActiveRange.setStart(newNode, 0);1161 getSelection().removeAllRanges();1162 getSelection().addRange(newActiveRange);1163 activedRange.setStart(newNode, 0);1164 }1165 // 如果激活选区中结束节点是一个可以编辑的文本节点,并且他的 endoffset 偏移量不是 0也不是其结束位置1166 // 则调用 splitText(),参数等于结束的偏移量1167 if (utils.isEditable(activedRange.endContainer)1168 && activedRange.endContainer.nodeType == Node.TEXT_NODE1169 && activedRange.endOffset != 01170 && activedRange.endOffset != utils.getNodeLength(activedRange.endContainer)) {1171 // 处理 IE 问题1172 // IE 选区范围异常,所以要重新修正选区范围1173 // 在调用 getActiveRange 之前先 splitText 然后更正选区1174 let activeRange = activedRange;1175 let newStart: [Node, number] = [activeRange.startContainer, activeRange.startOffset];1176 let newEnd: [Node, number] = [activeRange.endContainer, activeRange.endOffset];1177 (<Text>activeRange.endContainer).splitText(activeRange.endOffset);1178 activeRange.setStart(newStart[0], newStart[1]);1179 activeRange.setEnd(newEnd[0], newEnd[1]);1180 getSelection().removeAllRanges();1181 getSelection().addRange(activeRange);1182 }1183 // 获取所有有效包含的 nodeList1184 // 优先清除所有的值1185 utils.getAllEffectivelyContainedNodes(activedRange, function (node) {1186 return utils.isEditable(node) && node.nodeType == Node.ELEMENT_NODE;1187 }).forEach(function (element) {1188 clearValue(element, command);1189 });1190 // "Let node list be all editable nodes effectively contained in the active1191 // range.1192 //1193 // "For each node in node list:"1194 utils.getAllEffectivelyContainedNodes(activedRange, utils.isEditable).forEach(function (node) {1195 // "Push down values on node."1196 pushDownValues(node, command, newValue);1197 // "If node is an allowed child of span, force the value of node."1198 if (utils.isAllowedChild(node, "span")) {1199 forceValue(node, command, newValue);1200 }1201 });1202 }1203 function preset() {1204 for (const [command, module] of commands) {1205 // 如果没有设置对应的 css 属性,就给默认值 null1206 if (!("relevantCssProperty" in module)) {1207 module.relevantCssProperty = null;1208 }1209 // 如果一个命令定义了内联命令激活值但没有其他定义何时它是不确定的,1210 // 则不确定在有效包含在活动范围内的可格式化节点中,是否至少有一个其有效命令值是给定值之一1211 // 并且至少其有效命令值不是给定值之一1212 if ("inlineCommandActivatedValues" in module1213 && !("indeterm" in module)) {1214 module.indeterm = function() {1215 if (!selection.getActiveRange()) {1216 return false;1217 }1218 let values = utils.getAllEffectivelyContainedNodes(selection.getActiveRange(), utils.isFormattableNode)1219 .map(function(node) { return getEffectiveCommandValue(node, command) });1220 let matchingValues = values.filter(function(value) {1221 return module.inlineCommandActivatedValues.indexOf(value) != -1;1222 });1223 return matchingValues.length >= 11224 && values.length - matchingValues.length >= 1;1225 };1226 }1227 // 如果一个命令定义了内联命令激活值,如果活动范围中没有有效地包含可格式化节点,1228 // 并且活动范围的起始节点的有效命令值是给定值之一,则其状态为真;1229 // 或者如果在活动范围内有效包含至少一个可格式化的节点,并且所有这些节点的有效命令值等于给定值之一。1230 if ("inlineCommandActivatedValues" in module) {1231 module.state = function() {1232 if (!selection.getActiveRange()) {1233 return false;1234 }1235 let nodes = utils.getAllEffectivelyContainedNodes(selection.getActiveRange(), utils.isFormattableNode);1236 if (nodes.length == 0) {1237 return module.inlineCommandActivatedValues1238 .indexOf(getEffectiveCommandValue(selection.getActiveRange().startContainer, command)) != -1;1239 } else {1240 return nodes.every(function(node) {1241 return module.inlineCommandActivatedValues1242 .indexOf(getEffectiveCommandValue(node, command)) != -1;1243 });1244 }1245 };1246 }1247 // 如果命令是标准内联值命令,则不确定在有效包含在活动范围内的可格式化节点中,是否有两个具有不同的有效命令值。1248 // 它的值是有效包含在活动范围内的第一个可格式化节点的有效命令值;1249 // 或者如果没有这样的节点,活动范围的起始节点的有效命令值;1250 // 或者如果它为空,则为空字符串。”1251 if ("standardInlineValueCommand" in module) {1252 module.indeterm = function() {1253 if (!selection.getActiveRange()) {1254 return false;1255 }1256 let values = utils.getAllEffectivelyContainedNodes(selection.getActiveRange())1257 .filter(utils.isFormattableNode)1258 .map(function(node) { return getEffectiveCommandValue(node, command) });1259 for (let i = 1; i < values.length; i++) {1260 if (values[i] != values[i - 1]) {1261 return true;1262 }1263 }1264 return false;1265 };1266 module.value = function() {1267 if (!selection.getActiveRange()) {1268 return "";1269 }1270 let refNode = utils.getAllEffectivelyContainedNodes(selection.getActiveRange(), utils.isFormattableNode)[0];1271 if (typeof refNode == "undefined") {1272 refNode = selection.getActiveRange().startContainer;1273 }1274 let ret = getEffectiveCommandValue(refNode, command);1275 if (ret === null) {1276 return "";1277 }1278 return ret;1279 };1280 }1281 if ("preservesOverrides" in module) {1282 let oldAction = module.action;1283 module.action = function(value) {1284 let overrides = recordCurrentOverrides();1285 let ret = oldAction(value);1286 if (utils.getActiveRange().collapsed) {1287 restoreStatesAndValues(overrides);1288 }...

Full Screen

Full Screen

d549ba877ef2abdd028ad56f175ed0eccb0425c1_1_56.js

Source:d549ba877ef2abdd028ad56f175ed0eccb0425c1_1_56.js Github

copy

Full Screen

...15 commands[command].indeterm = function( range ) {16 var values = getAllEffectivelyContainedNodes(range, function(node) {17 return isEditable(node)18 && node.nodeType == Node.TEXT_NODE;19 }).map(function(node) { return getEffectiveCommandValue(node, command) });20 var matchingValues = values.filter(function(value) {21 return commands[command].inlineCommandActivatedValues.indexOf(value) != -1;22 });23 return matchingValues.length >= 124 && values.length - matchingValues.length >= 1;25 };26 }27 // "If a command has inline command activated values defined, its state28 // is true if either no editable Text node is effectively contained in29 // the active range, and the active range's start node's effective30 // command value is one of the given values; or if there is at least31 // one editable Text node effectively contained in the active range,32 // and all of them have an effective command value equal to one of the33 // given values."34 if ("inlineCommandActivatedValues" in commands[command]) {35 commands[command].state = function(range) {36 var nodes = getAllEffectivelyContainedNodes(range, function(node) {37 return isEditable(node)38 && node.nodeType == Node.TEXT_NODE;39 });40 if (nodes.length == 0) {41 return commands[command].inlineCommandActivatedValues42 .indexOf(getEffectiveCommandValue(range.startContainer, command)) != -1;43 return ret;44 } else {45 return nodes.every(function(node) {46 return commands[command].inlineCommandActivatedValues47 .indexOf(getEffectiveCommandValue(node, command)) != -1;48 });49 }50 };51 }52 // "If a command is a standard inline value command, it is53 // indeterminate if among editable Text nodes that are effectively54 // contained in the active range, there are two that have distinct55 // effective command values. Its value is the effective command value56 // of the first editable Text node that is effectively contained in the57 // active range, or if there is no such node, the effective command58 // value of the active range's start node."59 if ("standardInlineValueCommand" in commands[command]) {60 commands[command].indeterm = function() {61 var values = getAllEffectivelyContainedNodes(getActiveRange())62 .filter(function(node) { return isEditable(node) && node.nodeType == Node.TEXT_NODE })63 .map(function(node) { return getEffectiveCommandValue(node, command) });64 for (var i = 1; i < values.length; i++) {65 if (values[i] != values[i - 1]) {66 return true;67 }68 }69 return false;70 };71 commands[command].value = function() {72 var refNode = getAllEffectivelyContainedNodes(getActiveRange(), function(node) {73 return isEditable(node)74 && node.nodeType == Node.TEXT_NODE;75 })[0];76 if (typeof refNode == "undefined") {77 refNode = getActiveRange().startContainer;78 }79 return getEffectiveCommandValue(refNode, command);80 };81 }...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1var wptk = require('wptoolkit');2wp.login('admin', 'admin').then(function(){3 return wp.getEffectiveCommandValue('wp:post:post_title', 'post.php?action=edit&post=1');4}).then(function(value){5 console.log(value);6});7var wptk = require('wptoolkit');8wp.login('admin', 'admin').then(function(){9 return wp.getEffeltiveCkitandValue('wp:post:post_title', 'post.php?ctio=eit&post=1');10}).then(function(value){11 conolelog(value);12});

Full Screen

Using AI Code Generation

copy

Full Screen

1var wptk = require('wptoolkit');2wp.login('admin', 'admin').then(function(){3 return wp.getEffectiveCommandValue('wp:post:post_title', 'post.php?action=edit&post=1');4}).then(function(value){5 console.log(value);6});7var wptk = require('wptoolkit');8wp.login('admin', 'admin').then(function(){9 return wp.getEffectiveCommandValue('wp:post:post_title', 'post.php?action=edit&post=1');10}).then(function(value){11 console.log(value);12});

Full Screen

Using AI Code Generation

copy

Full Screen

1var command = 'bold';2var value = getEffectiveCommandValue( command );3console.log( value );4var getEffectiveCommandValue = function( command ) {5 var value = document.queryCommandValue( command );6 return value;7};8var getEffectiveCommandValue = function( command ) {9 var value = document.queryCommandValue( command );10 return value;11};12var getEffectiveCommandValue = function( command ) {13 var value = document.queryCommandValue( command );14 return value;15};16var getEffectiveCommandValue = function( command ) {17 var value = document.queryCommandValue( command );18 return value;bar19function test()20{21 var cmd = document.getElementById("cmd_bold");22 var val = cmd.getEffectiveCommandValue("state_all");23 alert(val);24}25 onload="test()">26};

Full Screen

Using AI Code Generation

copy

Full Screen

1var getEffectiveCommandValue = function( command ) {2 var value = document.queryCommandValue( command );3 return value;4};5var getEffectiveCommandValue = function( command ) {6 var value = document.queryCommandValue( command );7 return value;8};9var getEffectiveCommandValue = function( command ) {10 var value = document.queryCommandValue( command );11 return value;12};13var getEffectiveCommandValue = function( command ) {14 var value = document.queryCommandValue( command );15 return value;16};17var getEffectiveCommandValue = function( command ) {18 var value = document.queryCommandValue( command );19 return value;20};21var getEffectiveCommandValue = function( command ) {22 var value = document.queryCommandValue( command );23 return value;24};

Full Screen

Using AI Code Generation

copy

Full Screen

1var cmd = "cmd_print";2var cmd_value = window.opener.getEffectiveCommandValue(cmd);3alert(cmd_value);4function getEffectiveCommandValue(cmd) {5 return window.opener.getEffectiveCommandValue(cmd);6}7var cmd = "cmd_print";8var cmd_value = window.opener.getEffectiveCommandValue(cmd);ing for t o the document

Full Screen

Using AI Code Generation

copy

Full Screen

1var toolbar = document.getElementById("wptoolbar");2var status = document.getElementById("status");3function getCommandValue()4{5 var command = toolbar.getEffectiveCommandValue("wptoolbar");6 status.label = command;7}8toolbar.addEventListener("command", getCommandValue, false);9function init()10{11 var toolbar = document.getElementById("wptoolbar");12 var status = document.getElementById("status");13 var command = toolbar.getEffectiveCommandValue("wptoolbar");14 status.label = command;15}16window.addEventListener("load", init, false);

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run wpt automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful