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

Unified Diff: third_party/WebKit/LayoutTests/svg/as-image/svgview-references-use-counters.html

Issue 1471963007: Count usage of #svgView(...) and plain SVG <view> targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update histograms.xml Created 5 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/svg/as-image/svgview-references-use-counters.html
diff --git a/third_party/WebKit/LayoutTests/svg/as-image/svgview-references-use-counters.html b/third_party/WebKit/LayoutTests/svg/as-image/svgview-references-use-counters.html
new file mode 100644
index 0000000000000000000000000000000000000000..80112ed1c0690bed3184c84dcf3317402d15f063
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/svg/as-image/svgview-references-use-counters.html
@@ -0,0 +1,40 @@
+<!DOCTYPE html>
+<script src="../../resources/js-test.js"></script>
+<script src="../../resources/run-after-layout-and-paint.js"></script>
+<style>
+ img {
+ width: 100px;
+ height: 100px;
+ }
+</style>
+<body>
+</body>
+<script>
+ var SVGSVGElementFragmentSVGView = 1035; // From UseCounter.h
+ var SVGSVGElementFragment = 1036; // From UseCounter.h
+ window.jsTestIsAsync = true;
+
+ var obj = document.createElement('object');
+ obj.data = "resources/svglogo.svg#svgView(viewBox(0,0,150,150))";
+ document.body.appendChild(obj);
+
+ obj.onload = function() {
+ runAfterLayoutAndPaint(function() {
+ shouldBeTrue("window.internals.isUseCounted(document.querySelector('object').contentDocument, SVGSVGElementFragmentSVGView)");
+ shouldBeFalse("window.internals.isUseCounted(document.querySelector('object').contentDocument, SVGSVGElementFragment)");
+
+ var obj = document.createElement('object');
+ obj.data = "../css/resources/fragment-identifiers.svg#green";
+ document.body.appendChild(obj);
+
+ obj.onload = function() {
+ runAfterLayoutAndPaint(function() {
+ shouldBeTrue("window.internals.isUseCounted(document.querySelector('object').contentDocument, SVGSVGElementFragmentSVGView)");
+ shouldBeTrue("window.internals.isUseCounted(document.querySelector('object').contentDocument, SVGSVGElementFragment)");
+ finishJSTest();
+ });
+ };
+ });
+ };
+</script>
+
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/UseCounter.h » ('j') | third_party/WebKit/Source/core/svg/SVGSVGElement.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698