|
|
DevTools: introduce CSSStyleSheetHeader.originalContentProvider() method
This patch adds CSSStyleSheetHeader.originalContentProvider() method,
which returns a content provider of original CSSStyleSheetHeader content.
This provider is used to:
- populate Workspace
- build initial mapping for LiveSASS
BUG= 610061
R=pfeldman
Committed: https://crrev.com/e8058b2de1e7f9e610ebe429a77a1bd16032f3a2
Cr-Commit-Position: refs/heads/master@{#392787}
Total comments: 4
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+348 lines, -72 lines) |
Patch |
 |
M |
third_party/WebKit/LayoutTests/http/tests/inspector/search/search-in-static.html
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
third_party/WebKit/LayoutTests/http/tests/inspector/search/sources-search-scope-many-projects.html
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
third_party/WebKit/LayoutTests/http/tests/inspector/stylesheet-source-mapping.html
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
third_party/WebKit/LayoutTests/http/tests/inspector/workspace-test.js
|
View
|
1
2
3
4
|
1 chunk |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
third_party/WebKit/LayoutTests/inspector/elements/styles-1/edit-inspector-stylesheet.html
|
View
|
1
2
|
2 chunks |
+9 lines, -15 lines |
0 comments
|
Download
|
 |
M |
third_party/WebKit/LayoutTests/inspector/elements/styles-4/keyframes-source-offsets.html
|
View
|
1
2
3
|
1 chunk |
+5 lines, -2 lines |
0 comments
|
Download
|
 |
A |
third_party/WebKit/LayoutTests/inspector/elements/styles/original-content-provider.html
|
View
|
1
|
1 chunk |
+123 lines, -0 lines |
0 comments
|
Download
|
 |
A |
third_party/WebKit/LayoutTests/inspector/elements/styles/original-content-provider-expected.txt
|
View
|
1
|
1 chunk |
+40 lines, -0 lines |
0 comments
|
Download
|
 |
M |
third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.js
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/scripts-panel.html
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/scripts-sorting.html
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/switch-file.html
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/ui-source-code-display-name.html
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
third_party/WebKit/LayoutTests/inspector/sources/debugger/navigator-view.html
|
View
|
1
2
3
4
|
1 chunk |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
third_party/WebKit/LayoutTests/inspector/sources/sources-panel-extension-names.html
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
third_party/WebKit/Source/devtools/front_end/bindings/CompilerScriptMapping.js
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
third_party/WebKit/Source/devtools/front_end/bindings/NetworkProject.js
|
View
|
1
|
1 chunk |
+3 lines, -2 lines |
0 comments
|
Download
|
 |
M |
third_party/WebKit/Source/devtools/front_end/common/StaticContentProvider.js
|
View
|
1
2
3
4
|
3 chunks |
+15 lines, -25 lines |
0 comments
|
Download
|
 |
M |
third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js
|
View
|
1
2
3
4
|
1 chunk |
+3 lines, -0 lines |
0 comments
|
Download
|
 |
M |
third_party/WebKit/Source/devtools/front_end/network/ResourceWebSocketFrameView.js
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
third_party/WebKit/Source/devtools/front_end/sass/ASTSourceMap.js
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
third_party/WebKit/Source/devtools/front_end/sass/SASSSourceMapFactory.js
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
third_party/WebKit/Source/devtools/front_end/sdk/CSSModel.js
|
View
|
1
2
|
9 chunks |
+44 lines, -6 lines |
0 comments
|
Download
|
 |
M |
third_party/WebKit/Source/devtools/front_end/sdk/CSSStyleSheetHeader.js
|
View
|
1
2
3
4
|
3 chunks |
+75 lines, -0 lines |
0 comments
|
Download
|
 |
M |
third_party/WebKit/Source/devtools/front_end/sdk/SourceMap.js
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
third_party/WebKit/Source/devtools/front_end/sources/ScriptFormatterEditorAction.js
|
View
|
1
2
3
4
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
|
View
|
1
2
3
4
|
1 chunk |
+12 lines, -3 lines |
0 comments
|
Download
|
Depends on Patchset:
Total messages: 17 (9 generated)
|