Changes between Version 9 and Version 10 of Writing Layout Tests for DumpRenderTree
- Timestamp:
- Mar 11, 2008, 5:02:11 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Writing Layout Tests for DumpRenderTree
v9 v10 14 14 * Tests should not access the Internet. Avoid `http:` URLs in `src` and `href` attributes, in CSS properties and in XMLHttpRequest. Testing WebKit's network layer should be done using the HTTP test facility, to be described below. 15 15 16 * Do not make unnecessary use of `window.setTimeout` and similar functions which create a lower bound on the time it takes the test to complete. For separating events in time, you can use `eventSender.leapForward` .16 * Do not make unnecessary use of `window.setTimeout` and similar functions which create a lower bound on the time it takes the test to complete. For separating events in time, you can use `eventSender.leapForward`; for waiting on sub-resources, you can use load events (e.g. iframe.onload = doNextStep;) 17 17 18 * Do not make unnecessary use of external resources: use inline JavaScript and `style` elements instead of `link`s to external stylesheets. You can also use `data:` URLs sometimes for things like frames' `src` attribute. The exceptions are stylesheets and JavaScript libraries that are shared by multiple tests, and cases that test the loading of external resources. 18 * Do not make unnecessary use of external resources: use inline JavaScript and `style` elements instead of `link`s to external stylesheets. You can also use `data:` URLs sometimes for things like frames' `src` attribute. The exceptions are stylesheets and JavaScript libraries that are shared by multiple tests, and cases that test the loading of external resources. (There are various data: url generators on the net.) 19 20 = Writing JavaScript-based DOM-only Test Cases = 21 Test cases which only test the DOM can be written as .js files instead of .html files 22 * Write a .js file and place it in a resources/ subdirectory 23 * Add a TEMPLATE.html file to the same resources/ subdirectory, fixing the paths to point to fast/js/resources/js-test* 24 * run make-js-test-wrappers 25 26 To see what sort of special js functions are exposed to js-only tests, see fast/js/resources/js-test-pre.js 19 27 20 28 = DumpRenderTree JavaScript Environment = … … 52 60 Sends a mouseUp event to the WebView at the current mouse position. 53 61 62 === `enableDOMUIEventLogging` === 63 === `fireKeyboardEventsToElement` === 64 === `setDragMode` === 65 54 66 == `window.GCController` == 55 67 … … 67 79 68 80 === `insertText` === 69 70 81 === `doCommand` === 71 72 82 === `setMarkedText` === 73 74 83 === `substringFromRange` === 75 76 84 === `attributedSubstringFromRange` === 77 78 85 === `firstRectForCharacterRange` === 79 80 86 === `characterIndexForPoint` === 81 82 87 === `makeAttributedString` === 83 88