| OLD | NEW | 
|---|
| 1 Test generating, importing and exporting keys for AES-KW. Test that they can't b
    e used with another algorithm. | 1 Test generating, importing and exporting keys for AES-KW. Test that they can't b
    e used with another algorithm. | 
| 2 | 2 | 
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
    ". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
    ". | 
| 4 | 4 | 
| 5 | 5 | 
| 6 Generating a key... | 6 Generating a key... | 
| 7 PASS key.toString() is '[object CryptoKey]' | 7 PASS key.toString() is '[object CryptoKey]' | 
| 8 PASS key.type is 'secret' | 8 PASS key.type is 'secret' | 
| 9 PASS key.algorithm.name is 'AES-KW' | 9 PASS key.algorithm.name is 'AES-KW' | 
| 10 PASS key.algorithm.length is 256 | 10 PASS key.algorithm.length is 256 | 
| 11 | 11 | 
| 12 Testing that the key can't be used with AES-CBC... | 12 Testing that the key can't be used with AES-CBC... | 
| 13 error is: InvalidAccessError: key.algorithm does not match that of operation | 13 error is: InvalidAccessError: key.algorithm does not match that of operation | 
| 14 | 14 | 
| 15 Exporting the key to raw... | 15 Exporting the key to raw... | 
| 16 PASS exportedKey.toString() is '[object ArrayBuffer]' | 16 PASS exportedKey.toString() is '[object ArrayBuffer]' | 
| 17 Importing it back... | 17 Importing it back... | 
| 18 PASS importedKey.toString() is '[object CryptoKey]' | 18 PASS importedKey.toString() is '[object CryptoKey]' | 
| 19 PASS importedKey.type is 'secret' | 19 PASS importedKey.type is 'secret' | 
| 20 PASS importedKey.algorithm.name is 'AES-KW' | 20 PASS importedKey.algorithm.name is 'AES-KW' | 
| 21 PASS importedKey.algorithm.length is 256 | 21 PASS importedKey.algorithm.length is 256 | 
| 22 PASS successfullyParsed is true | 22 PASS successfullyParsed is true | 
| 23 | 23 | 
| 24 TEST COMPLETE | 24 TEST COMPLETE | 
| 25 | 25 | 
| OLD | NEW | 
|---|