aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html
Commit message (Collapse)AuthorAgeFilesLines
* fonts: Use `FontInstanceFlags::EMBEDDED_BITMAPS` for color fonts on MacOS ↵Martin Robinson2024-05-021-0/+343
| | | | | | (#32203) This flag ensures that these fonts are rendered full color in WebRender, allowing for full color emoji.
* Add some manual tests for verifying mouse events orderUtsav Oza2020-07-303-0/+178
|
* Add manual test for align-selfManish Goregaokar2020-07-201-0/+41
|
* Add loopback html testManish Goregaokar2020-07-021-0/+12
|
* Add smoketest command.Josh Matthews2019-05-091-0/+5
|
* Fix the broken link in about-pagepolemius2019-03-191-1/+1
|
* Add HTML testManish Goregaokar2018-08-241-0/+32
|
* Add unique canvas IDs to all canvas operations.Brody Eastwood2018-04-022-2/+167
|
* Fix tabsIgor Matuszewski2018-03-181-6/+6
|
* Add key/value iterable HTML benchmarkIgor Matuszewski2018-03-181-0/+44
|
* added autoclose workerNupur Baghel2018-02-223-0/+15
|
* Added extra bool in Window object to know about its Mutation ObserversNupur Baghel2018-02-161-0/+47
|
* Added a test for font selectionDan Robertson2018-02-061-0/+85
| | | | | | The test picks a font and makes a table asking for that font at every possible weight/stretch combination. One should expect the table entries to get bolder from right to left and wider from top to bottom.
* Implement CanvasRenderingContext2d.fillText's "unimplemented" messageBruno Bernardino2017-08-231-0/+18
|
* WebVR 1.1 spec compatibilityImanol Fernandez2017-07-056-31/+30
|
* Implement Gamepad APIImanol Fernandez2017-04-121-0/+420
|
* bluetooth test fixZakor Gyula2017-02-131-1/+2
|
* Bluetooth Permission API integrationZakor Gyula2017-02-131-0/+68
|
* Permission APIAttila Dusnoki2017-02-131-0/+37
|
* WebVR API Implementation, r=larsbergstromImanol Fernandez2017-01-0920-0/+10604
|
* Remove unused html bluetooth testsAttila Dusnoki2016-12-2124-1615/+0
|
* Auto merge of #13969 - bbansalWolfPack:master, r=jdmbors-servo2016-11-251-0/+21
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | html form validation initial steps with test html file <!-- Please describe your changes on the following line: --> Added code for initial steps in html form validation. 1. Added methods for trait validatable 2. implemented stub methods for elements like HTMLInputElement, HTMLButtonElement, etc <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X ] `./mach build -d` does not report any errors - [ X] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- 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/13969) <!-- Reviewable:end -->
| * html form validation initial steps with test html file, added stub methods, ↵Bhavya Bansal2016-11-231-0/+21
| | | | | | | | added code to handle validations
* | Add Promises to Service Worker ContainerPatrick Trottier2016-10-311-17/+28
|/ | | | The purpose of the code changes is to enable the use of promises in the Service Worker container. I also modified the Service Worker test in order to support the promises.
* layout: Don't touch the inline positions of block children unless theyPatrick Walton2016-10-111-0/+20
| | | | | | | | | are to be reflowed. See the comment added to `BlockFlow::propagate_assigned_inline_size_to_children()` for details. Closes #13704.
* Improve test_webgl_triangle.htmlImanol Fernandez2016-10-031-4/+22
|
* Update WebBluetooth to use PromisesMátyás Mustoha2016-09-2622-293/+422
|
* Auto merge of #13184 - szeged:requestdevice-refactor, r=jdmbors-servo2016-09-151-0/+28
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Webbluetooth requestDevice refactor and update <!-- Please describe your changes on the following line: --> Refactor requestDevice function according to the specification changes. 1. Moved the `request_bluetooth_devices` algorithm out from the `requestDevice` function. 2. Two new members in `BluetoothRequestDeviceFilter` and one new member in `RequestDeviceOptions`. 3. Also added annotations to the related functions. Related links: https://webbluetoothcg.github.io/web-bluetooth/#device-discovery, https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetooth-requestdevice, https://webbluetoothcg.github.io/web-bluetooth/#request-bluetooth-devices, https://webbluetoothcg.github.io/web-bluetooth/#matches-a-filter --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes fix #12614 <!-- Either: --> - [x] These changes do not require tests because , there is no WebBluetooth Test API implementation yet. <!-- 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/13184) <!-- Reviewable:end -->
| * requestDevice updatezakorgyula2016-09-141-0/+28
| |
* | store senders instead of buffering messagesRahul Sharma2016-09-077-22/+54
| |
* | Make service workers talk to their serviceworkerglobalscopesRahul Sharma2016-09-072-1/+12
|/
* Remove `./tests/html/tiny_test.html`UK9922016-08-311-1/+0
|
* Check for shadowing properties on DOM proxies. Fixes #12357.Josh Matthews2016-08-251-0/+12
|
* Issue #12421: tidy should also check .html filesSimon Martin2016-08-0928-241/+241
|
* Auto merge of #12682 - creativcoder:fire-fetch, r=jdmbors-servo2016-08-049-16/+45
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dispatch lifecycle events to service worker object and refactor html tests <!-- Please describe your changes on the following line: --> Changes introduced to dispatch `controllerchange`, `activate` and `fetch` simple events to Service Worker interfaces. The html tests under `tests/html/service-workers` was also updated to demo the changes. r? @jdm --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [X] These changes do not require tests because refactor. <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- 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/12682) <!-- Reviewable:end -->
| * Dispatch events to service worker object and refactor html testsRahul Sharma2016-08-029-16/+45
| |
* | Issue 7720: Add target selector and update when scrolling to fragmentSteve Melia2016-08-031-0/+51
|/
* Refactoring the WebBluetooth html tests.zakorgyula2016-07-2823-119/+1112
|
* Integrate service worker manager threadRahul Sharma2016-07-1610-0/+90
|
* Add a manual test for measuring DOM binding performanceJosh Matthews2016-07-141-0/+36
|
* Auto merge of #12118 - emilio:animation-shorthand, r=SimonSapinbors-servo2016-07-081-0/+23
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | style: Add support to the animation shorthand and fix parsing of animation-name <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> Part of #11916. r? @SimonSapin <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12118) <!-- Reviewable:end -->
| * style: Fix timing-function overriding from the keyframe declaration list.Emilio Cobos Álvarez2016-07-071-0/+23
| | | | | | | | | | | | The previous behavior is plain wrong, since that array has always at least one element, so we effectively couldn't specify anything else than "ease" in our animations.
* | Issue 8719: Add basic support for :active selectorSteve Melia2016-07-041-0/+18
|/
* Add a manual test for panicking while JS stack frames exist.Josh Matthews2016-06-221-0/+16
|
* script: When using WebRender, keep the DOM-side scroll positions forPatrick Walton2016-06-101-0/+7
| | | | | | | elements with `overflow: scroll` up to date, and take them into account when doing hit testing. Closes #11648.
* Fix all the links to the UI Events specAnthony Ramine2016-06-041-1/+1
| | | | DOM3Events is no more.
* Add included servicesAttila Dusnoki2016-05-241-0/+62
|
* Remove BluetoothDevice memberszakorgy2016-05-051-5/+0
|
* Add html testszakorgyula2016-05-036-0/+408
|
* element scroll settersZhen Zhang2016-04-201-0/+4
|