Commit d0cce110 authored by Glenn Adams's avatar Glenn Adams
Browse files

Update documentation; fix wsp timeout.

parent 7df6a769
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
<!--
// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
//  
// Copyright (C) 2014, Cable Television Laboratories, Inc. & Skynav, Inc. 
// Copyright (C) 2014, Skynav, Inc. & Cable Television Laboratories, Inc.
//  
// Redistribution and use in source and binary forms, with or without modification, are
// permitted provided that the following conditions are met:
@@ -100,6 +100,7 @@ In order to run tests, perform the following steps:
 1. Add entries to the local /etc/hosts file as follows:
    * `127.0.0.1 web-platform.test`
    * `127.0.0.1 www.web-platform.test`
    * `127.0.0.1 www1.web-platform.test`
 2. From the top-level directory of this `cvp2ts` hierarchy, run the following command in a separate shell:
    * `python tools/w3c/scripts/serve.py`
 3. From the test browser (user agent), open the following link:
@@ -126,7 +127,7 @@ If it is desired that the server and client run on separated devices, then the n
    webidl2@2.0.6

    $ python -V
    Python 2.7.7
    Python 2.7.8
</pre>

## Issues
+1 −1
Original line number Diff line number Diff line
Tue, 21 Oct 2014 20:10:08 GMT
 No newline at end of file
Tue, 21 Oct 2014 20:30:08 GMT
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
Tue, 21 Oct 2014 20:12:32 GMT
 No newline at end of file
Tue, 21 Oct 2014 20:32:30 GMT
 No newline at end of file
+77940 −1

File changed.

Preview size limit exceeded, changes collapsed.

+4 −0
Original line number Diff line number Diff line
@@ -27,6 +27,10 @@ function run(tOuter) {
    });
    ws.onerror = tOpen.step_func_done(function() {
        assert_unreached('web socket error');
        if (!!tDone)
            tDone.done();
        if (!!tData)
            tData.done();
    });
    tOuter.done();
}
Loading