aboutsummaryrefslogtreecommitdiff
path: root/files/ja/tools/debugger/break_on_dom_mutation/index.html
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 12:07:59 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 12:07:59 +0100
commit6ef1fa4618e08426b874529619a66adbd3d1fcf0 (patch)
tree890e3e27131be010d82ef957fa68db495006cb0e /files/ja/tools/debugger/break_on_dom_mutation/index.html
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.tar.gz
translated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.tar.bz2
translated-content-6ef1fa4618e08426b874529619a66adbd3d1fcf0.zip
unslug ja: move
Diffstat (limited to 'files/ja/tools/debugger/break_on_dom_mutation/index.html')
-rw-r--r--files/ja/tools/debugger/break_on_dom_mutation/index.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/files/ja/tools/debugger/break_on_dom_mutation/index.html b/files/ja/tools/debugger/break_on_dom_mutation/index.html
new file mode 100644
index 0000000000..4aca9399f6
--- /dev/null
+++ b/files/ja/tools/debugger/break_on_dom_mutation/index.html
@@ -0,0 +1,23 @@
+---
+title: DOM イベントでブレークする
+slug: Tools/Debugger/How_to/Break_on_a_DOM_event
+translation_of: Tools/Debugger/Break_on_DOM_mutation
+translation_of_original: Tools/Debugger/How_to/Break_on_a_DOM_event
+---
+<div>{{ToolsSidebar}}</div><div class="note">
+<p>この機能は、まだ新しいデバッガーでサポートしていません。現時点で必要である場合は、about:config で設定項目 "devtools.debugger.new-debugger-frontend" を <code>false</code> に設定して、古いデバッガーに戻すことができます。</p>
+
+<p>古いデバッガーのドキュメントは、<a href="/ja/docs/Tools/Debugger_%28before_Firefox_52%29">デバッガー (Firefox 52 より前)</a> をご覧ください。</p>
+</div>
+
+<p>特定の DOM イベントをリッスンしている場合は、リスナーを探し出して手動でブレークポイントを設定することなく、イベントが発生したときにデバッガーにブレークさせることができます。</p>
+
+<p>始めに<a href="/ja/docs/Tools/Debugger/UI_Tour#toolbar"> ツールバー </a>上の変数/イベントペインを開くボタンをクリックして、<a href="/ja/docs/Tools/Debugger/UI_Tour#Events_pane">イベントペイン </a>を開きます。そして、"イベント" タブをクリックします。イベントペインは、リスナーを割り当てているすべてのイベントを列挙します:</p>
+
+<p><img alt="" src="https://mdn.mozillademos.org/files/13210/debugger-events-pane-annotated.png" style="display: block; height: 334px; margin-left: auto; margin-right: auto; width: 904px;"></p>
+
+<p>そして、ブレークさせたいイベントの隣にあるボックスにチェックを入れてください。</p>
+
+<p>イベントが発生すると、リスナーの始点でコードがブレークします。</p>
+
+<p>{{EmbedYouTube("f-tbR8kj0K0")}}</p>