Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(668)

Side by Side Diff: Source/core/testing/Internals.idl

Issue 66383005: Remove the concept of user stylesheets. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix WebFrameCSSCallbackTest tests Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/testing/Internals.cpp ('k') | Source/testing/runner/TestRunner.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 [RaisesException] ClientRectList nonFastScrollableRects(Document document); 189 [RaisesException] ClientRectList nonFastScrollableRects(Document document);
190 190
191 [RaisesException] DOMString repaintRectsAsText(Document document); 191 [RaisesException] DOMString repaintRectsAsText(Document document);
192 [RaisesException] ClientRectList repaintRects(Element element); 192 [RaisesException] ClientRectList repaintRects(Element element);
193 193
194 [RaisesException] void garbageCollectDocumentResources(Document document); 194 [RaisesException] void garbageCollectDocumentResources(Document document);
195 void evictAllResources(); 195 void evictAllResources();
196 196
197 void allowRoundingHacks(); 197 void allowRoundingHacks();
198 198
199 void insertAuthorCSS(Document document, DOMString css);
200 void insertUserCSS(Document document, DOMString css);
201
202 unsigned long numberOfLiveNodes(); 199 unsigned long numberOfLiveNodes();
203 unsigned long numberOfLiveDocuments(); 200 unsigned long numberOfLiveDocuments();
204 sequence<DOMString> consoleMessageArgumentCounts(Document document); 201 sequence<DOMString> consoleMessageArgumentCounts(Document document);
205 Window openDummyInspectorFrontend(DOMString url); 202 Window openDummyInspectorFrontend(DOMString url);
206 void closeDummyInspectorFrontend(); 203 void closeDummyInspectorFrontend();
207 unsigned long[] setMemoryCacheCapacities(unsigned long minDeadBytes, unsigne d long maxDeadBytes, unsigned long totalBytes); 204 unsigned long[] setMemoryCacheCapacities(unsigned long minDeadBytes, unsigne d long maxDeadBytes, unsigned long totalBytes);
208 [RaisesException] void setInspectorResourcesDataSizeLimits(long maximumResou rcesContentSize, long maximumSingleResourceContentSize); 205 [RaisesException] void setInspectorResourcesDataSizeLimits(long maximumResou rcesContentSize, long maximumSingleResourceContentSize);
209 206
210 DOMString counterValue(Element element); 207 DOMString counterValue(Element element);
211 long pageNumber(Element element, optional float pageWidth, optional float pa geHeight); 208 long pageNumber(Element element, optional float pageWidth, optional float pa geHeight);
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 [RaisesException] DOMString getImageSourceURL(Element element); 253 [RaisesException] DOMString getImageSourceURL(Element element);
257 254
258 boolean isSelectPopupVisible(Node node); 255 boolean isSelectPopupVisible(Node node);
259 256
260 [RaisesException] ClientRect selectionBounds(); 257 [RaisesException] ClientRect selectionBounds();
261 258
262 boolean loseSharedGraphicsContext3D(); 259 boolean loseSharedGraphicsContext3D();
263 260
264 [RaisesException] void forceCompositingUpdate(Document document); 261 [RaisesException] void forceCompositingUpdate(Document document);
265 }; 262 };
OLDNEW
« no previous file with comments | « Source/core/testing/Internals.cpp ('k') | Source/testing/runner/TestRunner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698