Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-original-content-expected.txt |
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-original-content-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-original-content-expected.txt |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4e33695f41b36becc4468c844e02dd2d607a9d12 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-original-content-expected.txt |
| @@ -0,0 +1,17 @@ |
| +Tests that the original content is accessible on live edited scripts. |
| + |
| +==== Original Content ==== |
| +function f() |
| +{ |
| + return 0; |
| +} |
| + |
| + |
| + |
| +==== Current Content ==== |
| +function f() |
| +{ |
| + return "live-edited string"; |
| +} |
| + |
| + |