1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14

content / test / data / shared_dictionary / README.md [blame]

# Shared Dictionary Tests

- This directory contains files for shared dictionary related browser tests.

- `brotli` command can be installed from https://github.com/google/brotli.

- `path/compressed.data` is created using the following command.

  ```bash
  $ echo -en '\xffDCB' > path/compressed.data
  $ openssl dgst -sha256 -binary test.dict >> path/compressed.data
  $ echo -n 'This is compressed test data using a test dictionary' | \
    brotli -D test.dict >> path/compressed.data
  ```