├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── main.rs └── shell.rs ├── images ├── go-next.png ├── go-previous.png ├── list-add.png └── view-refresh.png ├── resources ├── Credits.rtf.mako ├── Servo.ico ├── ahem.css ├── ahem │ ├── AHEM____.TTF │ ├── Ahem.ps │ ├── Ahem.sit │ ├── COPIED-FROM │ ├── COPYING │ └── README ├── android_params ├── badcert.html ├── badcert.jpg ├── cert-google-only ├── certs ├── failure.html ├── gatt_blocklist.txt ├── hsts_preload.json ├── iso-8859-8.css ├── itried.jpg ├── neterror.html ├── not-found.html ├── package-prefs.json ├── prefs.json ├── presentational-hints.css ├── privatekey_for_testing.key ├── public_domains.txt ├── quirks-mode.css ├── quotes.css ├── rippy.png ├── self_signed_certificate_for_testing.crt ├── servo.css ├── servo.icns ├── servo.png ├── tumbeast.png ├── user-agent-js │ └── 00.example.js └── user-agent.css ├── rust-toolchain ├── solutions.adoc └── src ├── convert.rs ├── eventloop.rs ├── lib.rs ├── view.rs └── window.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | **/*.rs.bk 3 | _virtualenv 4 | resources 5 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/README.md -------------------------------------------------------------------------------- /examples/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/examples/main.rs -------------------------------------------------------------------------------- /examples/shell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/examples/shell.rs -------------------------------------------------------------------------------- /images/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/images/go-next.png -------------------------------------------------------------------------------- /images/go-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/images/go-previous.png -------------------------------------------------------------------------------- /images/list-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/images/list-add.png -------------------------------------------------------------------------------- /images/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/images/view-refresh.png -------------------------------------------------------------------------------- /resources/Credits.rtf.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/Credits.rtf.mako -------------------------------------------------------------------------------- /resources/Servo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/Servo.ico -------------------------------------------------------------------------------- /resources/ahem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/ahem.css -------------------------------------------------------------------------------- /resources/ahem/AHEM____.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/ahem/AHEM____.TTF -------------------------------------------------------------------------------- /resources/ahem/Ahem.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/ahem/Ahem.ps -------------------------------------------------------------------------------- /resources/ahem/Ahem.sit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/ahem/Ahem.sit -------------------------------------------------------------------------------- /resources/ahem/COPIED-FROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/ahem/COPIED-FROM -------------------------------------------------------------------------------- /resources/ahem/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/ahem/COPYING -------------------------------------------------------------------------------- /resources/ahem/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/ahem/README -------------------------------------------------------------------------------- /resources/android_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/android_params -------------------------------------------------------------------------------- /resources/badcert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/badcert.html -------------------------------------------------------------------------------- /resources/badcert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/badcert.jpg -------------------------------------------------------------------------------- /resources/cert-google-only: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/cert-google-only -------------------------------------------------------------------------------- /resources/certs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/certs -------------------------------------------------------------------------------- /resources/failure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/failure.html -------------------------------------------------------------------------------- /resources/gatt_blocklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/gatt_blocklist.txt -------------------------------------------------------------------------------- /resources/hsts_preload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/hsts_preload.json -------------------------------------------------------------------------------- /resources/iso-8859-8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/iso-8859-8.css -------------------------------------------------------------------------------- /resources/itried.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/itried.jpg -------------------------------------------------------------------------------- /resources/neterror.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/neterror.html -------------------------------------------------------------------------------- /resources/not-found.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/not-found.html -------------------------------------------------------------------------------- /resources/package-prefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/package-prefs.json -------------------------------------------------------------------------------- /resources/prefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/prefs.json -------------------------------------------------------------------------------- /resources/presentational-hints.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/presentational-hints.css -------------------------------------------------------------------------------- /resources/privatekey_for_testing.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/privatekey_for_testing.key -------------------------------------------------------------------------------- /resources/public_domains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/public_domains.txt -------------------------------------------------------------------------------- /resources/quirks-mode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/quirks-mode.css -------------------------------------------------------------------------------- /resources/quotes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/quotes.css -------------------------------------------------------------------------------- /resources/rippy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/rippy.png -------------------------------------------------------------------------------- /resources/self_signed_certificate_for_testing.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/self_signed_certificate_for_testing.crt -------------------------------------------------------------------------------- /resources/servo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/servo.css -------------------------------------------------------------------------------- /resources/servo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/servo.icns -------------------------------------------------------------------------------- /resources/servo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/servo.png -------------------------------------------------------------------------------- /resources/tumbeast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/tumbeast.png -------------------------------------------------------------------------------- /resources/user-agent-js/00.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/user-agent-js/00.example.js -------------------------------------------------------------------------------- /resources/user-agent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/resources/user-agent.css -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | nightly-2018-10-05 2 | -------------------------------------------------------------------------------- /solutions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/solutions.adoc -------------------------------------------------------------------------------- /src/convert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/src/convert.rs -------------------------------------------------------------------------------- /src/eventloop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/src/eventloop.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/src/view.rs -------------------------------------------------------------------------------- /src/window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/servo-gtk/HEAD/src/window.rs --------------------------------------------------------------------------------