Skip to content

web-platform-tests/editor

Repository files navigation

An online web application to reduce web issues directly to webplatform tests.

See it live

Visit the Web Platform Test Editor to get started!

Features

  1. Protoyping HTML, CSS, and Javascript code. See sample code rendered on page.
  2. Examine CSS properties of rendered elements. Inspect elements similar to the developer tools avaliable in your browser.
  3. Add expected values for properties to test against. Useful to test how elements render on various browsers.
  4. Save prototype tests with your Github account to load later. Or search and load tests made by others.

Contributing

This project welcomes contributions and suggestions.

Requirements

You will need node.js with npm and MongoDB installed.

Run npm i -g typescript (in terminal) to install typescript on your machine.

Project Setup

  1. Run npm i (in terminal while inside the project) to install the required packages.
  2. If using a version of MongoDB different from 3.6, update the file mongo.cmd at line C:\Program Files\MongoDB\Server\3.6\bin\mongod.exe to the version of MongoDB installed. (3.6 to your version)
  3. Create a path uploads/db from the root of the project. Local MongoDB data will be saved here.
  4. Run mongo.cmd command first. (double-click cmd file from the file explorer or run ./mongo.cmd from terminal)
  5. Run compile.cmd on any changes made.
  6. Run start.cmd to start running locally at http://localhost:3000

Getting Started

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.

Submitting Contributions

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.

Code of Conduct

This project has adopted the Web-Platform-Tests Code of Conduct.

Contact

Issues

Any issues related to the project can be found here. Feel free to submit more for any feature requests or bugs.

Reporting Security Issues

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.

License

This project is under MIT license described in detail here.

About

A repo for helping author/edit tests for WPT

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages