When a browser renders data that was trasfered using chunked encoding that the browser should render the origional data without the chunk size and CRLFs added to encode the data, correct?
Using this code as an example:
https://gist.github.com/josiahcarlson/3250376
My browser (Chrome and FF) renders
12
this is chunk: 0
12
this is chunk: 1
12
this is chunk: 2
12
this is chunk: 3
12
this is chunk: 4
12
this is chunk: 5
12
this is chunk: 6
12
this is chunk: 7
12
this is chunk: 8
12
this is chunk: 9
0
I was not expecting to see the chunk sizes.
Should the data be rendered with our without the endcoding information in the browser?