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

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

Issue 2647843002: Switch Shadow DOM V0 <content> FeatureSet tests to SimTest. (Closed)
Patch Set: Created 3 years, 11 months 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
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 [RaisesException] ShadowRoot youngerShadowRoot(Node root); 51 [RaisesException] ShadowRoot youngerShadowRoot(Node root);
52 52
53 [RaisesException] DOMString shadowRootType(Node root); 53 [RaisesException] DOMString shadowRootType(Node root);
54 [RaisesException] boolean hasShadowInsertionPoint(Node root); 54 [RaisesException] boolean hasShadowInsertionPoint(Node root);
55 [RaisesException] boolean hasContentElement(Node root); 55 [RaisesException] boolean hasContentElement(Node root);
56 [RaisesException] unsigned long countElementShadow(Node Root); 56 [RaisesException] unsigned long countElementShadow(Node Root);
57 DOMString shadowPseudoId(Element element); 57 DOMString shadowPseudoId(Element element);
58 [RaisesException] boolean isValidContentSelect(Element contentElement); 58 [RaisesException] boolean isValidContentSelect(Element contentElement);
59 Node treeScopeRootNode(Node node); 59 Node treeScopeRootNode(Node node);
60 Node parentTreeScope(Node node); 60 Node parentTreeScope(Node node);
61 [RaisesException] boolean hasSelectorForIdInShadow(Element host, DOMString i d);
62 [RaisesException] boolean hasSelectorForClassInShadow(Element host, DOMStrin g className);
63 [RaisesException] boolean hasSelectorForAttributeInShadow(Element host, DOMS tring attributeName);
64 [RaisesException] unsigned short compareTreeScopePosition(Node treeScope1, N ode treeScope2); 61 [RaisesException] unsigned short compareTreeScopePosition(Node treeScope1, N ode treeScope2);
65 [RaisesException] unsigned long updateStyleAndReturnAffectedElementCount(); 62 [RaisesException] unsigned long updateStyleAndReturnAffectedElementCount();
66 [RaisesException] unsigned long needsLayoutCount(); 63 [RaisesException] unsigned long needsLayoutCount();
67 [RaisesException] unsigned long hitTestCount(Document document); 64 [RaisesException] unsigned long hitTestCount(Document document);
68 [RaisesException] unsigned long hitTestCacheHits(Document document); 65 [RaisesException] unsigned long hitTestCacheHits(Document document);
69 [RaisesException] Element? elementFromPoint(Document document, double x, dou ble y, boolean ignoreClipping, boolean allowChildFrameContent); 66 [RaisesException] Element? elementFromPoint(Document document, double x, dou ble y, boolean ignoreClipping, boolean allowChildFrameContent);
70 [RaisesException] void clearHitTestCache(Document document); 67 [RaisesException] void clearHitTestCache(Document document);
71 68
72 // Animation testing. 69 // Animation testing.
73 [RaisesException] void pauseAnimations(double pauseTime); 70 [RaisesException] void pauseAnimations(double pauseTime);
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 DOMString getProgrammaticScrollAnimationState(Node node); 352 DOMString getProgrammaticScrollAnimationState(Node node);
356 353
357 ClientRect visualRect(Node node); 354 ClientRect visualRect(Node node);
358 355
359 OriginTrialsTest originTrialsTest(); 356 OriginTrialsTest originTrialsTest();
360 357
361 void crash(); 358 void crash();
362 359
363 void setIsLowEndDevice(boolean isLowEndDevice); 360 void setIsLowEndDevice(boolean isLowEndDevice);
364 }; 361 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698