Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(273)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: LayoutTests/fast/dom/Document/createProcessingInstruction-invalid-target.html
Issue
100433004
:
Sync Document.createProcessingInstruction() with spec (Closed)
Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update tests
Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
LayoutTests/dom/html/level1/core/documentinvalidcharacterexceptioncreatepi.js
LayoutTests/dom/html/level1/core/documentinvalidcharacterexceptioncreatepi1.js
LayoutTests/fast/dom/Document/createProcessingInstruction-invalid-data.html
LayoutTests/fast/dom/Document/createProcessingInstruction-invalid-data-expected.txt
LayoutTests/fast/dom/Document/createProcessingInstruction-invalid-target.html
LayoutTests/fast/dom/Document/createProcessingInstruction-invalid-target-expected.txt
LayoutTests/fast/dom/Node/initial-values-expected.txt
LayoutTests/fast/dom/Node/script-tests/initial-values.js
Source/core/dom/Document.cpp
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« LayoutTests/fast/dom/Document/createProcessingInstruction-invalid-data-expected.txt
('k') |
LayoutTests/fast/dom/Document/createProcessingInstruction-invalid-target-expected.txt »
('j') |
LayoutTests/fast/dom/Node/script-tests/initial-values.js »
('J')
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
<!doctype html>
2
<html>
3
<head>
4
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
<script src="../../../resources/js-test.js"></script>
6
</head>
7
<body>
8
<script>
9
[
10
// Invalid first Char
11
'0ascii',
12
'.Ascii',
13
'-Ascii',
14
' ascii',
15
' ascii',
16
'֑sc.ii',
17
'⃣scii',
18
'िascii',
19
'ʳascii',
20
// Invalid other char
21
'asc i',
22
'asc i',
23
'asciiⅦ'
24
].forEach(function(target)
25
{
26
shouldThrow("document.createProcessingInstruction('" + target + "', '')");
27
});
28
</script>
29
</body>
30
</html>
OLD
NEW
« no previous file with comments
|
« LayoutTests/fast/dom/Document/createProcessingInstruction-invalid-data-expected.txt
('k') |
LayoutTests/fast/dom/Document/createProcessingInstruction-invalid-target-expected.txt »
('j') |
LayoutTests/fast/dom/Node/script-tests/initial-values.js »
('J')
Issue 100433004: Sync Document.createProcessingInstruction() with spec (Closed)
Created 7 years ago by philipj_slow
Modified 7 years ago
Reviewers: jochen (gone - plz use gerrit)
Base URL: svn://svn.chromium.org/blink/trunk
Comments: 2
This is Rietveld
408576698