GitXplorerGitXplorer
H

demo

public
1 stars
5 forks
2 issues

Commits

List of commits on branch gh-pages.
Unverified
93c8872a4555be0bfc31ace448395af1939d604a

Add tflite web api

HHonry committed 2 years ago
Verified
f6c68f5d21124d4abc89075fc6a114d12f954317

Update setTimeout.html

HHonry committed 3 years ago
Verified
88a9f95759d0945eddad51feafc87fe1f4eddc38

Create setTimeout.html

HHonry committed 3 years ago
Unverified
7023bb4fda3d8ee208c3cfb63a03978b57ba5c2b

Add tfjs webgl backend

HHonry committed 4 years ago
Unverified
ec605c654c95e8386dc4fe73b76723f3c39fe3a0

Add tfjs wasm file

HHonry committed 4 years ago
Unverified
5e15235c8fabb0fbbe5e5d528f9f44aca4b1be76

Add navigation scheduling test for reporting chrome bug

HHonry committed 4 years ago

README

The README file for this repository.

Chrome Demos

This repository serves as a placeholder of chrome demos for Chrome rebase testing.

Demos on Browsers

The simple way to use the demos is to access to the GitHub pages at http://honry.github.io/demo/

Demos on Android

Based on the Crosswalk Project, one can build an installable web application for Android platforms following these steps:

  1. Download Crosswalk Project for Android package (.zip) from https://download.01.org/crosswalk/releases/crosswalk/android/:

    wget url/to/android/canary/18.46.471.0/crosswalk-18.46.471.0.zip
  2. Clone Crosswalk-app-tools:

    git clone https://github.com/crosswalk-project/crosswalk-app-tools.git
  3. Set Environment variables:

    vim .bashrc
    export CROSSWALK_APP_TOOLS_CACHE_DIR=path/to/crosswalk/directory
    export PATH=path/to/crosswalk-app-tool/src:$PATH
  4. Go to crosswalk-app-tools directory:

    cd path/to/crosswalk-app-tools
  5. Install crosswalk-app-tools:

    sudo npm install
  6. Clone demo:

    git clone https://github.com/honry/demo.git
  7. Go to the parent directory of demo

    cd path/to/parent/directory/of/demo
  8. Create APK package as follows:

    crosswalk-pkg --crosswalk=path/to/crosswalk/android/crosswalk-18.46.471.0.zip demo/

    This will produce two apk files, one for x86 architecture and one for ARM. The apk files will end up in the parent directory of the application. Each file is given the name by append "xwalk_package_id", "xwalk_app_version" in the manifest, and an architecture identifier ("x86" or "arm"). For this demo, the output files are org.chrome.demo-0.1-debug.armabi-v7a.apk and org.chrome.demo-0.1-debug.x86.apk.

Demos on Windows

Build an installable web application for Windows platforms following these steps:

  1. Download Crosswalk Project for Windows package (.zip) from https://download.01.org/crosswalk/releases/crosswalk/windows/

  2. Install crosswalk-app-tools:

    npm install -g crosswalk-app-tools
  3. Clone demo:

    git clone https://github.com/honry/demo.git
  4. Go to the parent directory of demo

  5. Create MSI file as follows:

    crosswalk-pkg --crosswalk=path\to\crosswalk\windows\crosswalk-18.46.468.0.zip --platforms=windows demo\

    This will produce a msi file, it will end up in the parent directory of the application.

  6. Install the application on windows:

    Double click the msi file to install.