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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementTestHelpers.h

Issue 2027513002: Add a stack of queues of elements with reaction queues. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ce-element-queue
Patch Set: Rebase. Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/core/dom/custom/CustomElementReactionTestHelpers.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/custom/CustomElementTestHelpers.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementTestHelpers.h b/third_party/WebKit/Source/core/dom/custom/CustomElementTestHelpers.h
new file mode 100644
index 0000000000000000000000000000000000000000..5d4f1dc11113fd71f3d36f6e993427adb1c198ab
--- /dev/null
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementTestHelpers.h
@@ -0,0 +1,78 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CustomElementTestHelpers_h
+#define CustomElementTestHelpers_h
+
+#include "bindings/core/v8/ExceptionState.h"
+#include "core/dom/Document.h"
+#include "core/dom/Element.h"
+#include "core/dom/QualifiedName.h"
+#include "core/html/HTMLDocument.h"
+#include "platform/heap/Handle.h"
+#include "wtf/text/AtomicString.h"
+
+#include <utility>
+#include <vector>
+
+namespace blink {
+
+class CreateElement {
+ STACK_ALLOCATED()
+public:
+ CreateElement(const AtomicString& localName)
+ : m_namespaceURI(HTMLNames::xhtmlNamespaceURI)
+ , m_localName(localName)
+ {
+ }
+
+ CreateElement& inDocument(Document* document)
+ {
+ m_document = document;
+ return *this;
+ }
+
+ CreateElement& inNamespace(const AtomicString& uri)
+ {
+ m_namespaceURI = uri;
+ return *this;
+ }
+
+ CreateElement& withId(const AtomicString& id)
+ {
+ m_attributes.push_back(std::make_pair(HTMLNames::idAttr, id));
+ return *this;
+ }
+
+ CreateElement& withIsAttribute(const AtomicString& value)
+ {
+ m_attributes.push_back(std::make_pair(HTMLNames::isAttr, value));
+ return *this;
+ }
+
+ operator Element*() const
+ {
+ Document* document = m_document.get();
+ if (!document)
+ document = HTMLDocument::create();
+ NonThrowableExceptionState noExceptions;
+ Element* element = document->createElementNS(
+ m_namespaceURI,
+ m_localName,
+ noExceptions);
+ for (const auto& attribute : m_attributes)
+ element->setAttribute(attribute.first, attribute.second);
+ return element;
+ }
+
+private:
+ Member<Document> m_document;
+ AtomicString m_namespaceURI;
+ AtomicString m_localName;
+ std::vector<std::pair<QualifiedName, AtomicString>> m_attributes;
+};
+
+} // namespace blink
+
+#endif // CustomElementTestHelpers_h
« no previous file with comments | « third_party/WebKit/Source/core/dom/custom/CustomElementReactionTestHelpers.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698