| Index: third_party/WebKit/Source/web/WebElement.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebElement.cpp b/third_party/WebKit/Source/web/WebElement.cpp
|
| index 0a9668ee9266eace187c508674462091c4cc31b9..6f92a56f78d6644fb4b5bf61f0fb485481aa10f9 100644
|
| --- a/third_party/WebKit/Source/web/WebElement.cpp
|
| +++ b/third_party/WebKit/Source/web/WebElement.cpp
|
| @@ -143,6 +143,11 @@ WebString WebElement::textContent() const
|
| return constUnwrap<Element>()->textContent();
|
| }
|
|
|
| +WebString WebElement::innerHTML() const
|
| +{
|
| + return constUnwrap<Element>()->innerHTML();
|
| +}
|
| +
|
| void WebElement::requestFullScreen()
|
| {
|
| Element* element = unwrap<Element>();
|
|
|