Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / transforms / 3d / hit-testing / resources / hit-test-utils.js
blob9012e2eaf598c9dc6cd06dd4f3e80658b07edc6a
1 if (window.testRunner)
2   testRunner.dumpAsText();
4 function log(s)
6   var results = document.getElementById('results');
7   results.innerHTML += s + '<br>';
10 function runTest()
12   for (var i = 0; i < hitTestData.length; ++i) {
13     var test = hitTestData[i];
14     var hit = document.elementFromPoint(test.point[0], test.point[1]);
15     if (hit.id == test.target)
16       log('Element at ' + test.point[0] + ', ' + test.point[1] + ' has id \"' + hit.id  + '\": PASS');
17     else
18       log('Element at ' + test.point[0] + ', ' + test.point[1] + ' is ' + hit.id  + ': FAIL');
19   }