Auto merge of #19754 - ferjm:innertext, r=mbrubeck

Implement element.innerText getter

<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/19754)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2018-02-13 03:41:48 -05:00 committed by GitHub
commit 9e64008e75
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 844 additions and 16 deletions

View file

@ -15,6 +15,8 @@
<div id="container"></div>
<svg id="svgContainer"></svg>
<script>
let container = document.querySelector('#container');
let svgContainer = document.querySelector('#svgContainer');
function testText(html, expectedPlain, msg) {
textTextInContainer(container, html, expectedPlain, msg);
}