| Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/selectors/pseudo-classes/utils.js
|
| diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/selectors/pseudo-classes/utils.js b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/selectors/pseudo-classes/utils.js
|
| deleted file mode 100644
|
| index 8f5497ec57e5cdaeea37954756b8d4cbd48cdd3c..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/selectors/pseudo-classes/utils.js
|
| +++ /dev/null
|
| @@ -1,14 +0,0 @@
|
| -function getElementsByIds(ids) {
|
| - var result = [];
|
| - ids.forEach(function(id) {
|
| - result.push(document.getElementById(id));
|
| - });
|
| - return result;
|
| -}
|
| -
|
| -function testSelector(selector, expected, testName) {
|
| - test(function(){
|
| - var elements = document.querySelectorAll(selector);
|
| - assert_array_equals(elements, getElementsByIds(expected));
|
| - }, testName);
|
| -}
|
|
|