repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
text
/
whitespace
/
pre-dynamic-update.html
blob
2304720bee7c6f023004221425cc79a47f04efab
1
<!DOCTYPE
html
>
2
3
<style>
4
#pre { white-space: pre; }
5
</style>
6
7
<p
id
=
"non-pre"
> <span>
Should be indented
</span> </p>
8
<p
id
=
"pre"
> <span>
Should not be indented
</span> </p>
9
10
<script>
11
onload
=
function
() {
12
var
nonPre
=
document
.
getElementById
(
'non-pre'
);
13
var
pre
=
document
.
getElementById
(
'pre'
);
14
pre
.
id
=
"non-pre"
;
15
nonPre
.
id
=
"pre"
;
16
};
17
</script>