2016-09-12 03:59:42 +00:00
|
|
|
|
/*
|
2020-04-10 18:06:55 +00:00
|
|
|
|
* Copyright (C) 2016-2020 Yomichan Authors
|
2016-09-12 03:59:42 +00:00
|
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2020-01-01 17:00:31 +00:00
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2016-09-12 03:59:42 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2020-03-11 02:30:36 +00:00
|
|
|
|
/* global
|
|
|
|
|
* DOM
|
|
|
|
|
* TextSourceElement
|
|
|
|
|
* TextSourceRange
|
|
|
|
|
*/
|
2016-09-12 03:59:42 +00:00
|
|
|
|
|
2019-11-25 19:25:11 +00:00
|
|
|
|
const REGEX_TRANSPARENT_COLOR = /rgba\s*\([^)]*,\s*0(?:\.0+)?\s*\)/;
|
2019-08-31 23:47:00 +00:00
|
|
|
|
|
2019-08-31 19:30:32 +00:00
|
|
|
|
function docSetImposterStyle(style, propertyName, value) {
|
|
|
|
|
style.setProperty(propertyName, value, 'important');
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-31 19:10:46 +00:00
|
|
|
|
function docImposterCreate(element, isTextarea) {
|
2020-05-02 17:00:46 +00:00
|
|
|
|
const body = document.body;
|
|
|
|
|
if (body === null) { return [null, null]; }
|
|
|
|
|
|
2019-08-31 19:30:32 +00:00
|
|
|
|
const elementStyle = window.getComputedStyle(element);
|
2019-08-31 17:58:45 +00:00
|
|
|
|
const elementRect = element.getBoundingClientRect();
|
2019-09-01 20:06:22 +00:00
|
|
|
|
const documentRect = document.documentElement.getBoundingClientRect();
|
2019-10-17 23:30:54 +00:00
|
|
|
|
let left = elementRect.left - documentRect.left;
|
|
|
|
|
let top = elementRect.top - documentRect.top;
|
2019-09-01 20:06:22 +00:00
|
|
|
|
|
|
|
|
|
// Container
|
|
|
|
|
const container = document.createElement('div');
|
|
|
|
|
const containerStyle = container.style;
|
|
|
|
|
docSetImposterStyle(containerStyle, 'all', 'initial');
|
|
|
|
|
docSetImposterStyle(containerStyle, 'position', 'absolute');
|
|
|
|
|
docSetImposterStyle(containerStyle, 'left', '0');
|
|
|
|
|
docSetImposterStyle(containerStyle, 'top', '0');
|
|
|
|
|
docSetImposterStyle(containerStyle, 'width', `${documentRect.width}px`);
|
|
|
|
|
docSetImposterStyle(containerStyle, 'height', `${documentRect.height}px`);
|
|
|
|
|
docSetImposterStyle(containerStyle, 'overflow', 'hidden');
|
|
|
|
|
docSetImposterStyle(containerStyle, 'opacity', '0');
|
|
|
|
|
|
|
|
|
|
docSetImposterStyle(containerStyle, 'pointer-events', 'none');
|
|
|
|
|
docSetImposterStyle(containerStyle, 'z-index', '2147483646');
|
|
|
|
|
|
|
|
|
|
// Imposter
|
2017-03-01 04:23:29 +00:00
|
|
|
|
const imposter = document.createElement('div');
|
2019-08-31 19:30:32 +00:00
|
|
|
|
const imposterStyle = imposter.style;
|
|
|
|
|
|
2020-02-23 18:04:55 +00:00
|
|
|
|
let value = element.value;
|
|
|
|
|
if (value.endsWith('\n')) { value += '\n'; }
|
|
|
|
|
imposter.textContent = value;
|
2019-08-31 19:30:32 +00:00
|
|
|
|
|
|
|
|
|
for (let i = 0, ii = elementStyle.length; i < ii; ++i) {
|
|
|
|
|
const property = elementStyle[i];
|
|
|
|
|
docSetImposterStyle(imposterStyle, property, elementStyle.getPropertyValue(property));
|
|
|
|
|
}
|
|
|
|
|
docSetImposterStyle(imposterStyle, 'position', 'absolute');
|
2019-09-01 20:06:22 +00:00
|
|
|
|
docSetImposterStyle(imposterStyle, 'top', `${top}px`);
|
|
|
|
|
docSetImposterStyle(imposterStyle, 'left', `${left}px`);
|
2019-08-31 19:30:32 +00:00
|
|
|
|
docSetImposterStyle(imposterStyle, 'margin', '0');
|
2019-09-01 20:06:22 +00:00
|
|
|
|
docSetImposterStyle(imposterStyle, 'pointer-events', 'auto');
|
2019-08-31 19:30:32 +00:00
|
|
|
|
|
2019-08-31 19:10:46 +00:00
|
|
|
|
if (isTextarea) {
|
2019-08-31 19:30:32 +00:00
|
|
|
|
if (elementStyle.overflow === 'visible') {
|
|
|
|
|
docSetImposterStyle(imposterStyle, 'overflow', 'auto');
|
2019-08-31 19:10:46 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2019-08-31 19:30:32 +00:00
|
|
|
|
docSetImposterStyle(imposterStyle, 'overflow', 'hidden');
|
|
|
|
|
docSetImposterStyle(imposterStyle, 'white-space', 'nowrap');
|
|
|
|
|
docSetImposterStyle(imposterStyle, 'line-height', elementStyle.height);
|
2017-03-01 04:23:29 +00:00
|
|
|
|
}
|
2017-02-08 05:46:37 +00:00
|
|
|
|
|
2019-09-01 20:06:22 +00:00
|
|
|
|
container.appendChild(imposter);
|
2020-05-02 17:00:46 +00:00
|
|
|
|
body.appendChild(container);
|
2019-08-31 17:58:45 +00:00
|
|
|
|
|
|
|
|
|
// Adjust size
|
|
|
|
|
const imposterRect = imposter.getBoundingClientRect();
|
|
|
|
|
if (imposterRect.width !== elementRect.width || imposterRect.height !== elementRect.height) {
|
2019-08-31 19:30:32 +00:00
|
|
|
|
const width = parseFloat(elementStyle.width) + (elementRect.width - imposterRect.width);
|
|
|
|
|
const height = parseFloat(elementStyle.height) + (elementRect.height - imposterRect.height);
|
|
|
|
|
docSetImposterStyle(imposterStyle, 'width', `${width}px`);
|
|
|
|
|
docSetImposterStyle(imposterStyle, 'height', `${height}px`);
|
2019-08-31 17:58:45 +00:00
|
|
|
|
}
|
2019-10-17 23:30:54 +00:00
|
|
|
|
if (imposterRect.x !== elementRect.x || imposterRect.y !== elementRect.y) {
|
|
|
|
|
left += (elementRect.left - imposterRect.left);
|
|
|
|
|
top += (elementRect.top - imposterRect.top);
|
|
|
|
|
docSetImposterStyle(imposterStyle, 'left', `${left}px`);
|
|
|
|
|
docSetImposterStyle(imposterStyle, 'top', `${top}px`);
|
|
|
|
|
}
|
2019-08-31 17:58:45 +00:00
|
|
|
|
|
2017-02-08 05:46:37 +00:00
|
|
|
|
imposter.scrollTop = element.scrollTop;
|
|
|
|
|
imposter.scrollLeft = element.scrollLeft;
|
2018-06-08 21:48:26 +00:00
|
|
|
|
|
2019-09-01 20:06:22 +00:00
|
|
|
|
return [imposter, container];
|
2017-02-08 05:46:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-14 18:52:03 +00:00
|
|
|
|
function docElementsFromPoint(x, y, all) {
|
|
|
|
|
if (all) {
|
2019-12-18 01:53:12 +00:00
|
|
|
|
// document.elementsFromPoint can return duplicates which must be removed.
|
|
|
|
|
const elements = document.elementsFromPoint(x, y);
|
|
|
|
|
return elements.filter((e, i) => elements.indexOf(e) === i);
|
2019-09-14 18:52:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const e = document.elementFromPoint(x, y);
|
|
|
|
|
return e !== null ? [e] : [];
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-18 01:56:32 +00:00
|
|
|
|
function docRangeFromPoint(x, y, deepDomScan) {
|
2019-09-14 18:52:03 +00:00
|
|
|
|
const elements = docElementsFromPoint(x, y, deepDomScan);
|
2018-06-08 21:48:26 +00:00
|
|
|
|
let imposter = null;
|
2019-09-01 20:06:22 +00:00
|
|
|
|
let imposterContainer = null;
|
2020-01-25 16:18:18 +00:00
|
|
|
|
let imposterSourceElement = null;
|
2019-08-31 23:47:00 +00:00
|
|
|
|
if (elements.length > 0) {
|
|
|
|
|
const element = elements[0];
|
2019-09-15 20:09:46 +00:00
|
|
|
|
switch (element.nodeName.toUpperCase()) {
|
2019-08-10 17:33:00 +00:00
|
|
|
|
case 'IMG':
|
|
|
|
|
case 'BUTTON':
|
|
|
|
|
return new TextSourceElement(element);
|
|
|
|
|
case 'INPUT':
|
2020-01-25 16:18:18 +00:00
|
|
|
|
imposterSourceElement = element;
|
2019-09-01 20:06:22 +00:00
|
|
|
|
[imposter, imposterContainer] = docImposterCreate(element, false);
|
2019-08-31 19:10:46 +00:00
|
|
|
|
break;
|
2019-08-10 17:33:00 +00:00
|
|
|
|
case 'TEXTAREA':
|
2020-01-25 16:18:18 +00:00
|
|
|
|
imposterSourceElement = element;
|
2019-09-01 20:06:22 +00:00
|
|
|
|
[imposter, imposterContainer] = docImposterCreate(element, true);
|
2019-08-10 17:33:00 +00:00
|
|
|
|
break;
|
2017-03-05 04:27:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-14 18:52:03 +00:00
|
|
|
|
const range = caretRangeFromPointExt(x, y, deepDomScan ? elements : []);
|
2019-08-31 21:39:13 +00:00
|
|
|
|
if (range !== null) {
|
2019-08-31 18:57:24 +00:00
|
|
|
|
if (imposter !== null) {
|
2019-09-01 20:06:22 +00:00
|
|
|
|
docSetImposterStyle(imposterContainer.style, 'z-index', '-2147483646');
|
|
|
|
|
docSetImposterStyle(imposter.style, 'pointer-events', 'none');
|
2019-08-31 18:57:24 +00:00
|
|
|
|
}
|
2020-01-25 16:18:18 +00:00
|
|
|
|
return new TextSourceRange(range, '', imposterContainer, imposterSourceElement);
|
2019-08-31 18:57:24 +00:00
|
|
|
|
} else {
|
2019-09-01 20:06:22 +00:00
|
|
|
|
if (imposterContainer !== null) {
|
|
|
|
|
imposterContainer.parentNode.removeChild(imposterContainer);
|
2019-08-31 18:57:24 +00:00
|
|
|
|
}
|
|
|
|
|
return null;
|
2019-02-21 02:47:31 +00:00
|
|
|
|
}
|
2016-09-12 03:59:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-08 04:17:13 +00:00
|
|
|
|
function docSentenceExtract(source, extent) {
|
2016-09-12 03:59:42 +00:00
|
|
|
|
const quotesFwd = {'「': '」', '『': '』', "'": "'", '"': '"'};
|
|
|
|
|
const quotesBwd = {'」': '「', '』': '『', "'": "'", '"': '"'};
|
|
|
|
|
const terminators = '…。..??!!';
|
|
|
|
|
|
|
|
|
|
const sourceLocal = source.clone();
|
|
|
|
|
const position = sourceLocal.setStartOffset(extent);
|
2020-05-06 23:34:32 +00:00
|
|
|
|
sourceLocal.setEndOffset(extent * 2 - position, true);
|
2016-09-12 03:59:42 +00:00
|
|
|
|
const content = sourceLocal.text();
|
|
|
|
|
|
|
|
|
|
let quoteStack = [];
|
|
|
|
|
|
|
|
|
|
let startPos = 0;
|
|
|
|
|
for (let i = position; i >= startPos; --i) {
|
|
|
|
|
const c = content[i];
|
|
|
|
|
|
2017-05-25 16:09:15 +00:00
|
|
|
|
if (c === '\n') {
|
|
|
|
|
startPos = i + 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-12 03:59:42 +00:00
|
|
|
|
if (quoteStack.length === 0 && (terminators.includes(c) || c in quotesFwd)) {
|
|
|
|
|
startPos = i + 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (quoteStack.length > 0 && c === quoteStack[0]) {
|
|
|
|
|
quoteStack.pop();
|
|
|
|
|
} else if (c in quotesBwd) {
|
2019-08-11 18:59:02 +00:00
|
|
|
|
quoteStack.unshift(quotesBwd[c]);
|
2016-09-12 03:59:42 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
quoteStack = [];
|
|
|
|
|
|
2017-04-08 19:25:18 +00:00
|
|
|
|
let endPos = content.length;
|
2017-03-28 05:48:50 +00:00
|
|
|
|
for (let i = position; i <= endPos; ++i) {
|
2016-09-12 03:59:42 +00:00
|
|
|
|
const c = content[i];
|
|
|
|
|
|
2017-05-25 16:09:15 +00:00
|
|
|
|
if (c === '\n') {
|
|
|
|
|
endPos = i + 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-12 03:59:42 +00:00
|
|
|
|
if (quoteStack.length === 0) {
|
|
|
|
|
if (terminators.includes(c)) {
|
|
|
|
|
endPos = i + 1;
|
|
|
|
|
break;
|
2020-02-16 00:48:02 +00:00
|
|
|
|
} else if (c in quotesBwd) {
|
2016-09-12 03:59:42 +00:00
|
|
|
|
endPos = i;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (quoteStack.length > 0 && c === quoteStack[0]) {
|
|
|
|
|
quoteStack.pop();
|
|
|
|
|
} else if (c in quotesFwd) {
|
2019-08-11 18:59:02 +00:00
|
|
|
|
quoteStack.unshift(quotesFwd[c]);
|
2016-09-12 03:59:42 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-08 04:17:13 +00:00
|
|
|
|
const text = content.substring(startPos, endPos);
|
2017-04-08 19:25:18 +00:00
|
|
|
|
const padding = text.length - text.replace(/^\s+/, '').length;
|
2017-03-28 05:48:50 +00:00
|
|
|
|
|
|
|
|
|
return {
|
2017-04-08 04:17:13 +00:00
|
|
|
|
text: text.trim(),
|
2017-04-07 04:07:55 +00:00
|
|
|
|
offset: position - startPos - padding
|
2017-03-28 05:48:50 +00:00
|
|
|
|
};
|
2016-09-12 03:59:42 +00:00
|
|
|
|
}
|
2019-08-10 17:33:00 +00:00
|
|
|
|
|
2019-08-31 21:07:41 +00:00
|
|
|
|
function isPointInRange(x, y, range) {
|
2019-09-01 03:46:29 +00:00
|
|
|
|
// Require a text node to start
|
|
|
|
|
if (range.startContainer.nodeType !== Node.TEXT_NODE) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-30 00:35:23 +00:00
|
|
|
|
// Scan forward
|
|
|
|
|
const nodePre = range.endContainer;
|
|
|
|
|
const offsetPre = range.endOffset;
|
|
|
|
|
try {
|
2019-09-01 03:44:24 +00:00
|
|
|
|
const {node, offset, content} = TextSourceRange.seekForward(range.endContainer, range.endOffset, 1);
|
2019-08-30 00:35:23 +00:00
|
|
|
|
range.setEnd(node, offset);
|
|
|
|
|
|
2019-11-26 23:47:16 +00:00
|
|
|
|
if (!isWhitespace(content) && DOM.isPointInAnyRect(x, y, range.getClientRects())) {
|
2019-08-30 00:35:23 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
} finally {
|
|
|
|
|
range.setEnd(nodePre, offsetPre);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Scan backward
|
2019-09-01 03:44:24 +00:00
|
|
|
|
const {node, offset, content} = TextSourceRange.seekBackward(range.startContainer, range.startOffset, 1);
|
2019-08-30 00:35:23 +00:00
|
|
|
|
range.setStart(node, offset);
|
|
|
|
|
|
2019-11-26 23:47:16 +00:00
|
|
|
|
if (!isWhitespace(content) && DOM.isPointInAnyRect(x, y, range.getClientRects())) {
|
2019-09-01 03:51:30 +00:00
|
|
|
|
// This purposefully leaves the starting offset as modified and sets the range length to 0.
|
2019-08-30 00:35:23 +00:00
|
|
|
|
range.setEnd(node, offset);
|
2019-08-10 17:33:00 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-30 00:35:23 +00:00
|
|
|
|
// No match
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-01 03:44:24 +00:00
|
|
|
|
function isWhitespace(string) {
|
|
|
|
|
return string.trim().length === 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-31 21:39:13 +00:00
|
|
|
|
const caretRangeFromPoint = (() => {
|
|
|
|
|
if (typeof document.caretRangeFromPoint === 'function') {
|
|
|
|
|
// Chrome, Edge
|
|
|
|
|
return (x, y) => document.caretRangeFromPoint(x, y);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (typeof document.caretPositionFromPoint === 'function') {
|
|
|
|
|
// Firefox
|
|
|
|
|
return (x, y) => {
|
|
|
|
|
const position = document.caretPositionFromPoint(x, y);
|
2019-09-19 02:11:18 +00:00
|
|
|
|
if (position === null) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2019-08-31 21:39:13 +00:00
|
|
|
|
const node = position.offsetNode;
|
|
|
|
|
if (node === null) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-10 17:33:00 +00:00
|
|
|
|
const range = document.createRange();
|
2019-08-31 21:39:13 +00:00
|
|
|
|
const offset = (node.nodeType === Node.TEXT_NODE ? position.offset : 0);
|
2020-01-18 01:47:51 +00:00
|
|
|
|
try {
|
|
|
|
|
range.setStart(node, offset);
|
|
|
|
|
range.setEnd(node, offset);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
// Firefox throws new DOMException("The operation is insecure.")
|
|
|
|
|
// when trying to select a node from within a ShadowRoot.
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2019-08-10 17:33:00 +00:00
|
|
|
|
return range;
|
2019-08-31 21:39:13 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// No support
|
|
|
|
|
return () => null;
|
|
|
|
|
})();
|
2019-08-31 23:47:00 +00:00
|
|
|
|
|
|
|
|
|
function caretRangeFromPointExt(x, y, elements) {
|
|
|
|
|
const modifications = [];
|
|
|
|
|
try {
|
|
|
|
|
let i = 0;
|
2019-09-01 02:38:01 +00:00
|
|
|
|
let startContinerPre = null;
|
2019-08-31 23:47:00 +00:00
|
|
|
|
while (true) {
|
|
|
|
|
const range = caretRangeFromPoint(x, y);
|
|
|
|
|
if (range === null) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-01 02:38:01 +00:00
|
|
|
|
const startContainer = range.startContainer;
|
|
|
|
|
if (startContinerPre !== startContainer) {
|
|
|
|
|
if (isPointInRange(x, y, range)) {
|
|
|
|
|
return range;
|
|
|
|
|
}
|
|
|
|
|
startContinerPre = startContainer;
|
2019-08-31 23:47:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
i = disableTransparentElement(elements, i, modifications);
|
|
|
|
|
if (i < 0) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} finally {
|
|
|
|
|
if (modifications.length > 0) {
|
|
|
|
|
restoreElementStyleModifications(modifications);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function disableTransparentElement(elements, i, modifications) {
|
|
|
|
|
while (true) {
|
|
|
|
|
if (i >= elements.length) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const element = elements[i++];
|
|
|
|
|
if (isElementTransparent(element)) {
|
|
|
|
|
const style = element.hasAttribute('style') ? element.getAttribute('style') : null;
|
|
|
|
|
modifications.push({element, style});
|
2019-12-18 01:54:57 +00:00
|
|
|
|
element.style.setProperty('pointer-events', 'none', 'important');
|
2019-08-31 23:47:00 +00:00
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function restoreElementStyleModifications(modifications) {
|
|
|
|
|
for (const {element, style} of modifications) {
|
|
|
|
|
if (style === null) {
|
|
|
|
|
element.removeAttribute('style');
|
|
|
|
|
} else {
|
|
|
|
|
element.setAttribute('style', style);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function isElementTransparent(element) {
|
|
|
|
|
if (
|
|
|
|
|
element === document.body ||
|
|
|
|
|
element === document.documentElement
|
|
|
|
|
) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
const style = window.getComputedStyle(element);
|
|
|
|
|
return (
|
2019-11-26 02:04:34 +00:00
|
|
|
|
parseFloat(style.opacity) <= 0 ||
|
2019-08-31 23:47:00 +00:00
|
|
|
|
style.visibility === 'hidden' ||
|
|
|
|
|
(style.backgroundImage === 'none' && isColorTransparent(style.backgroundColor))
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function isColorTransparent(cssColor) {
|
|
|
|
|
return REGEX_TRANSPARENT_COLOR.test(cssColor);
|
|
|
|
|
}
|