An online web application to reduce web issues directly to webplatform tests.
Visit the Web Platform Test Editor to get started!
- Protoyping HTML, CSS, and Javascript code. See sample code rendered on page.
- Examine CSS properties of rendered elements. Inspect elements similar to the developer tools avaliable in your browser.
- Add expected values for properties to test against. Useful to test how elements render on various browsers.
- Save prototype tests with your Github account to load later. Or search and load tests made by others.
This project welcomes contributions and suggestions.
You will need node.js with npm and MongoDB installed.
Run npm i -g typescript
(in terminal) to install typescript on your machine.
- Run
npm i
(in terminal while inside the project) to install the required packages. - If using a version of MongoDB different from 3.6, update the file
mongo.cmd
at lineC:\Program Files\MongoDB\Server\3.6\bin\mongod.exe
to the version of MongoDB installed. (3.6 to your version) - Create a path
uploads/db
from the root of the project. Local MongoDB data will be saved here. - Run
mongo.cmd
command first. (double-click cmd file from the file explorer or run./mongo.cmd
from terminal) - Run
compile.cmd
on any changes made. - Run
start.cmd
to start running locally at http://localhost:3000
This project was completed in Typescript. For more information on developing in Typescript here.
editor-vm.tsx
contains the model of the data that the view is in sync with and displays.
editor.tsx
contains the elements and the logic of the view. View elements are written using the React and JSX syntax, but under the hood use mithril as the base for a custom framework. Essentially each Tag
represent a DOM element, and can define (bound) attributes which you can use to pass data into it. Additionally, you can define helper functions within the scope of the element, and use local state where appropriate.
This project uses the Monaco (Visual Studio Code Online Editor) as its editor. You can find its definition in monaco.d.ts
Run compile.cmd
on any changes made to compile the Typescript into Javascript to use.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repositories using our CLA.
This project has adopted the Web-Platform-Tests Code of Conduct.
Any issues related to the project can be found here. Feel free to submit more for any feature requests or bugs.
Security issues and bugs should be reported privately, via email, to the Browser Testing and Tools Working Group at the W3C. Please send email to the group privately. You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message.
This project is under MIT license described in detail here.