| Index: Source/web/WebElement.cpp
|
| diff --git a/Source/web/WebElement.cpp b/Source/web/WebElement.cpp
|
| index 4c2b37101339bf89022718a47bf61e48e0e249a0..1c943f4abaf11e3bc23b8e1477441c495e3ecfb6 100644
|
| --- a/Source/web/WebElement.cpp
|
| +++ b/Source/web/WebElement.cpp
|
| @@ -133,6 +133,11 @@
|
| return unwrap<Element>()->textContent();
|
| }
|
|
|
| +WebString WebElement::innerText()
|
| +{
|
| + return unwrap<Element>()->innerText();
|
| +}
|
| +
|
| WebString WebElement::computeInheritedLanguage() const
|
| {
|
| return WebString(constUnwrap<Element>()->computeInheritedLanguage());
|
|
|